16 lines
489 B
C#
16 lines
489 B
C#
using System.Collections.Generic;
|
|
using _0_Framework.Domain;
|
|
using CompanyManagment.App.Contracts.CrossJob;
|
|
|
|
namespace Company.Domain.CrossJobAgg;
|
|
|
|
public interface ICrossJobRepository : IRepository<long, CrossJob>
|
|
{
|
|
long CreateBackId(CrossJob createCrossJob);
|
|
List<CrossJobViewModel> GetCrossJob(long idGuild);
|
|
EditCrossJob GetDetails(long id);
|
|
List<CrossJobViewModel> Search(CrossJobSearchModel searchModel);
|
|
void Remove(long id);
|
|
void RemoveRange(long id);
|
|
|
|
} |