using System.Collections.Generic; using System.Threading.Tasks; using _0_Framework.Domain; using CompanyManagment.App.Contracts.Job; namespace Company.Domain.JobAgg; public interface IJobRepository : IRepository { List GetJob(); EditJob GetDetails(long id); List Search(JobSearchModel searchModel); List SearchJobForMain(JobSearchModel searchModel); // Task> GetJobListByText(string searchtText); List GetJobListByText(string searchtText); List GetJobListByWorkshopId(long workshopId); List GetJobListByTextAndWorkshopId(string textSearch, long workshopId); }