/// <summary> /// <see /// cref="Microsoft.Samples.NLayerApp.Application.MainBoundedContext.BankingModule.Services.IMainBoundedContextService" /> /// </summary> /// <param name="bankAccountId"> /// <see /// cref="Microsoft.Samples.NLayerApp.Application.MainBoundedContext.BankingModule.Services.IMainBoundedContextService" /> /// </param> /// <returns> /// <see /// cref="Microsoft.Samples.NLayerApp.Application.MainBoundedContext.BankingModule.Services.IMainBoundedContextService" /> /// </returns> public List <BankActivityDto> FindBankAccountActivities(Guid bankAccountId) { return(_bankAppService.FindBankAccountActivities(bankAccountId)); }
public IEnumerable <BankActivityDTO> Get(Guid bankAccountId) { return(_bankAppService.FindBankAccountActivities(bankAccountId)); }