Exemplo n.º 1
0
 private PersonalLoan Convert(PersonalLoanVm dest)
 => new PersonalLoan
 {
     App = new App {
         Data = dest?.App?.Data
     },
     Accounts = dest?.Accounts?.Select(a => new Account {
         Name = a.Name
     })
 };
Exemplo n.º 2
0
 public async Task <bool> ConsumerRetry(
     PersonalLoanVm app)
 {
     return(await coreBankingService.ApplyFor(Convert(app)));
 }
Exemplo n.º 3
0
 public Task <bool> ConsumerRetry(PersonalLoanVm app)
 {
     throw new NotImplementedException();
 }