16 lines
528 B
C#
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);
|
|
|
|
}
|
|
}
|