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