using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using _0_Framework.Domain; using CompanyManagment.App.Contracts.RollCallService; namespace Company.Domain.RollCallServiceAgg; public interface IRollCallServiceRepository : IRepository { EditRollCallService GetDetails(long id); RollCallServiceViewModel GetActiveServiceByWorkshopId(long workshopId); List GetAllServiceByWorkshopId(long workshopId); List GetActiveServiceByAccountId(long accountId); List GetAllServiceByAccountId(long accountId); bool IsExistActiveServiceByWorkshopId(long workshopId); }