public async Task <IActionResult> OnPostAsync() { var dto = ObjectMapper.Map <CreateEditEquipmentTypeViewModel, CreateUpdateEquipmentTypeDto>(ViewModel); await _service.UpdateAsync(Id, dto); return(NoContent()); }
public async Task <IActionResult> OnPostAsync() { await _service.UpdateAsync(Id, EquipmentType); return(NoContent()); }