Files
Backend-Api/Company.Domain/PaymentTransactionAgg/IPaymentTransactionRepository.cs

12 lines
425 B
C#

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<long,PaymentTransaction>
{
Task<List<GetPaymentTransactionListViewModel>> GetPaymentTransactionList(
GetPaymentTransactionListSearchModel searchModel);
}