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