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

15 lines
499 B
C#

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