using System.Collections.Generic; using System.Threading.Tasks; using _0_Framework.Domain; using CompanyManagment.App.Contracts.PaymentTransaction; namespace Company.Domain.PaymentTransactionAgg; public interface IPaymentTransactionRepository:IRepository { Task> GetPaymentTransactionList( GetPaymentTransactionListSearchModel searchModel); Task GetDetails(long id); }