Files
parr_api/PARR.DAL/Services/Interfaces/Base/IBaseService.cs

42 lines
1.3 KiB
C#
Raw Normal View History

using PARR.Core.Repositories.Base;
using PARR.Domain.Entities.Base;
2023-05-17 16:30:13 +10:00
namespace PARR.DAL.Services.Interfaces.Base
{
public interface IBaseService<T> : IBaseRepository<T> where T : class, IBaseEntity
2023-05-17 16:30:13 +10:00
{
// TODO: позже удалить этот интерфейс, когда изменим все сервисы на репозитории
2023-05-17 16:30:13 +10:00
//Task<T?> GetAsync(Guid id);
//IQueryable<T> Get();
//IQueryable<T> GetPage(IQueryable<T> query, PaginationFilter paginationFilter);
2023-05-17 16:30:13 +10:00
//Task<bool> CreateAsync(T obj);
//Task<bool> AddRangeAsync(List<T> objs);
2023-05-17 16:30:13 +10:00
//Task<bool> DeleteAsync(Guid id);
//bool Delete(T obj);
////Task<bool> CommitAsync();
//Task<bool> CommitAsync(IHistoryInitiator? initiator = null);
2023-05-17 16:30:13 +10:00
}
//public interface IBaseService<T> where T : class, IBaseEntity
//{
// Task<T?> GetAsync(Guid id);
// IQueryable<T> Get();
// IQueryable<T> GetPage(IQueryable<T> query, PaginationFilter paginationFilter);
// Task<bool> CreateAsync(T obj);
// Task<bool> AddRangeAsync(List<T> objs);
// Task<bool> DeleteAsync(Guid id);
// bool Delete(T obj);
// //Task<bool> CommitAsync();
// Task<bool> CommitAsync(IHistoryInitiator? initiator = null);
//}
2023-05-17 16:30:13 +10:00
}