using System.Collections.Generic; using _0_Framework.Domain; namespace Company.Domain.EmployeeDocumentItemAgg { public interface IEmployeeDocumentItemRepository : IRepository { EmployeeDocumentItem GetWithEmployeeDocumentsByItemId(long id); List GetUnsubmittedByEmployeeDocumentsId(long employeeDocumentsId); void RemoveRange(IEnumerable items); void Remove(EmployeeDocumentItem item); void AddRange(IEnumerable command); } }