예제 #1
0
 public async Task <IActionResult> DeleteTemplate([FromBody] ParmString obj)
 {
     return(Ok(await _tempService.DeleteAsync(obj.parm)));
 }
예제 #2
0
 public async Task <ApiResult <string> > DeleteTemplate([FromBody] ParmString obj)
 {
     return(await _tempService.DeleteAsync(obj.parm));
 }
예제 #3
0
 public async Task <ApiResult <string> > DeleteTemplate(string parm)
 {
     return(await _tempService.DeleteAsync(parm));
 }