using System.Collections.Generic; using _0_Framework.Domain; using CompanyManagment.App.Contracts.CrossJobItems; namespace Company.Domain.CrossJobItemsAgg; public interface ICrossJobItemsRepository : IRepository { List GetCrossJobItems(long idGuild); CrossJobItemsViewModel GetDetails(long id); List Search(CrossJobItemsSearchModel searchModel); void Remove(long id); void RemoveRange(long idcrossJob); }