IBankOperationRepository.cs 384 B

12345678910
  1. 
  2. namespace Contracts;
  3. public interface IBankOperationRepository : IRepositoryBase<BankOperation>
  4. {
  5. public IQueryable<BankOperation> GetAll();
  6. public IQueryable<BankOperation> GetAllConfirmed(Guid accountId, Guid businessId);
  7. public IQueryable<BankOperation> GetAllNew(Guid accountId, Guid businessId);
  8. public IQueryable<BankOperation> GetByBankAccountId(Guid bankAccountId);
  9. }