public async Task OnGetAsync() { var dto = await _service.GetAsync(Id); ViewModel = ObjectMapper.Map <EquipmentInspectionResultDto, CreateEditEquipmentInspectionResultViewModel>(dto); }
public async Task OnGetAsync() { var dto = await _service.GetAsync(Id); EquipmentInspectionResult = ObjectMapper.Map <EquipmentInspectionResultDto, CreateUpdateEquipmentInspectionResultDto>(dto); }