public async Task <IActionResult> OnPostAsync()
        {
            var dto = ObjectMapper.Map <CreateEditEquipmentInspectionViewModel, CreateUpdateEquipmentInspectionDto>(ViewModel);
            await _service.UpdateAsync(Id, dto);

            return(NoContent());
        }
示例#2
0
        public async Task <IActionResult> OnPostAsync()
        {
            await _service.UpdateAsync(Id, EquipmentInspection);

            return(NoContent());
        }