13 lines
351 B
C#
13 lines
351 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using _0_Framework.Domain;
|
|
using CompanyManagment.App.Contracts.PaymentToEmployee;
|
|
|
|
namespace Company.Domain.PaymentToEmployeeItemAgg;
|
|
public interface IPaymentToEmployeeItemRepository : IRepository<long, PaymentToEmployeeItem>
|
|
{
|
|
|
|
} |