예제 #1
0
 public Task <ServiceResult <bool> > Update(int id, EmployeeCreateOrUpdateRequestViewModel viewModel)
 {
     throw new System.NotImplementedException();
 }
예제 #2
0
 public async Task <IActionResult> UpdateEmployee([FromRoute] int id, [FromBody] EmployeeCreateOrUpdateRequestViewModel viewModel)
 => await HandleResultAsync(() => _employeeService.Update(id, viewModel));