Files
Backend-Api/Company.Domain/MasterWorkHistory/IMasterWorkHistoryRepository.cs
2024-07-05 21:36:15 +03:30

11 lines
403 B
C#

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