Esempio n. 1
0
 public void OnGet()
 {
     Well = new CreateUpdateWellDto();
 }
Esempio n. 2
0
        public async Task OnGetAsync()
        {
            var wellDto = await _wellAppService.GetAsync(Id);

            Well = ObjectMapper.Map <WellDto, CreateUpdateWellDto>(wellDto);
        }