|
|
@ -22,7 +22,7 @@ namespace WebApp.Controllers |
|
|
|
[HttpGet] |
|
|
|
public HttpResponseMessage GetAllCity() |
|
|
|
{ |
|
|
|
return new CommonService().GetAllCity(); |
|
|
|
return new SECommonService().GetAllCity(); |
|
|
|
} |
|
|
|
|
|
|
|
/// <summary>
|
|
|
@ -33,7 +33,7 @@ namespace WebApp.Controllers |
|
|
|
[HttpGet] |
|
|
|
public HttpResponseMessage GetArgumentClassList(string argumentClassID) |
|
|
|
{ |
|
|
|
return new CommonService().GetArgumentClassList(argumentClassID); |
|
|
|
return new SECommonService().GetArgumentClassList(argumentClassID); |
|
|
|
} |
|
|
|
|
|
|
|
/// <summary>
|
|
|
@ -45,7 +45,7 @@ namespace WebApp.Controllers |
|
|
|
public HttpResponseMessage UploadFiles() |
|
|
|
{ |
|
|
|
var c = HttpContext.Current; |
|
|
|
return new CommonService().Upload(c); |
|
|
|
return new SECommonService().Upload(c); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
xxxxxxxxxx