Files
Backend-Api/Company.Domain/EmployeeDocumentsAdminSelectionAgg/IEmployeeDocumentsAdminSelectionRepository.cs
2025-02-18 16:16:33 +03:30

16 lines
528 B
C#

using _0_Framework.Domain;
using CompanyManagment.App.Contracts.EmployeeDocumentsAdminSelection;
using System.Collections.Generic;
namespace Company.Domain.EmployeeDocumentsAdminSelectionAgg
{
public interface IEmployeeDocumentsAdminSelectionRepository : IRepository<long, EmployeeDocumentsAdminSelection>
{
//List<EmployeeDocumentsAdminSelectionViewModel> Search(SearchEmployeeDocumentsAdminSelection command);
//EmployeeDocumentsAdminSelection GetByEmployeeIdWithItems(long employeeId);
}
}