Пример #1
0
 private async Task <IList <BankAccountModel> > GetItemsAsync()
 {
     if (!ViewModelArgs.IsEmpty)
     {
         DataRequest <Data.BankAccount> request = BuildDataRequest();
         return(await BankAccountService.GetBankAccountsAsync(request));
     }
     return(new List <BankAccountModel>());
 }