using System.Collections.Generic; using System.Threading.Tasks; using _0_Framework.Domain; using CompanyManagment.App.Contracts.LeftWorkTemp; namespace Company.Domain.LeftWorkTempAgg; public interface ILeftWorkTempRepository:IRepository { /// /// گرفتن اطلاعات برای مودال جزئیات شروع به کار موقت یا ترک کار موقت /// /// /// /// Task GetStartAndLeftWorkDetails(long employeeId, long workshopId); void Remove(LeftWorkTemp entity); List GetLeftWorksByWorkshopId(long workshopId); }