public async Task OnGetAsync() { var dto = await _service.GetAsync(Id); EquipmentBrand = ObjectMapper.Map <EquipmentBrandDto, CreateUpdateEquipmentBrandDto>(dto); }
public async Task OnGetAsync() { var dto = await _service.GetAsync(Id); ViewModel = ObjectMapper.Map <EquipmentBrandDto, CreateEditEquipmentBrandViewModel>(dto); }