コード例 #1
0
 public Task <TransactionDto> GetAsync(Guid id)
 {
     return(_service.GetAsync(id));
 }
コード例 #2
0
        public virtual async Task OnGetAsync()
        {
            var dto = await _service.GetAsync(Id);

            ViewModel = ObjectMapper.Map <TransactionDto, CreateEditTransactionViewModel>(dto);
        }