namespace Contracts; public interface IBankOperationRepository : IRepositoryBase { public IQueryable GetAll(); public IQueryable GetAllConfirmed(Guid accountId, Guid businessId); public IQueryable GetAllNew(Guid accountId, Guid businessId); public IQueryable GetByBankAccountId(Guid bankAccountId); }