using System.Collections.Generic; using _0_Framework.Domain; using CompanyManagment.App.Contracts.MasterWorkHistory; namespace Company.Domain.MasterWorkHistory; public interface IMasterWorkHistoryRepository : IRepository { List Search(long petitionId); void RemoveMasterWorkHistories(IEnumerable MasterWorkHistories); }