17 lines
577 B
C#
17 lines
577 B
C#
|
|
using System.Collections.Generic;
|
|
using _0_Framework.Domain;
|
|
|
|
namespace Company.Domain.EmployeeDocumentItemAgg
|
|
{
|
|
public interface IEmployeeDocumentItemRepository : IRepository<long,EmployeeDocumentItem>
|
|
{
|
|
EmployeeDocumentItem GetWithEmployeeDocumentsByItemId(long id);
|
|
List<EmployeeDocumentItem> GetUnsubmittedByEmployeeDocumentsId(long employeeDocumentsId);
|
|
void RemoveRange(IEnumerable<EmployeeDocumentItem> items);
|
|
void Remove(EmployeeDocumentItem item);
|
|
|
|
void AddRange(IEnumerable<EmployeeDocumentItem> command);
|
|
}
|
|
}
|