예제 #1
0
 public async Task <ApiResult <string> > UpdateAdvLocation([FromBody] AdoAdvLocation parm)
 {
     return(await _adoAdvLocationService.ModifyAsync(parm));
 }
예제 #2
0
 public async Task <ApiResult <string> > AddAdvLocation([FromBody] AdoAdvLocation model)
 {
     return(await _adoAdvLocationService.AddAsync(model));
 }