/// <summary>
 ///    <see
 ///       cref="Microsoft.Samples.NLayerApp.Application.MainBoundedContext.BankingModule.Services.IMainBoundedContextService" />
 /// </summary>
 /// <returns>
 ///    <see
 ///       cref="Microsoft.Samples.NLayerApp.Application.MainBoundedContext.BankingModule.Services.IMainBoundedContextService" />
 /// </returns>
 public List <BankAccountDto> FindBankAccounts()
 {
     return(_bankAppService.FindBankAccounts());
 }
示例#2
0
 public IEnumerable <BankAccountDTO> Get()
 {
     return(_bankAppService.FindBankAccounts());
 }