namespace Contracts; public interface ITransactionRepository : IRepositoryBase { public Transaction GetByOperationId(Guid operationId); public IQueryable GetByAccountId(Guid bankAccountId, Guid businessId); }