15 lines
434 B
C#
15 lines
434 B
C#
using _0_Framework.InfraStructure;
|
|
using Company.Domain.PaymentToEmployeeItemAgg;
|
|
|
|
namespace CompanyManagment.EFCore.Repository;
|
|
|
|
public class PaymentToEmployeeItemsRepository : RepositoryBase<long, PaymentToEmployeeItem>, IPaymentToEmployeeItemRepository
|
|
{
|
|
private readonly CompanyContext _context;
|
|
|
|
public PaymentToEmployeeItemsRepository(CompanyContext context) : base(context)
|
|
{
|
|
_context = context;
|
|
}
|
|
}
|