feat: разделение на repository - services
This commit is contained in:
26
PARR.Core/Repositories/Base/IBaseRepository.cs
Normal file
26
PARR.Core/Repositories/Base/IBaseRepository.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
using PARR.Domain.Common.Pagination;
|
||||
using PARR.Domain.Entities.Base;
|
||||
using PARR.Domain.Entities.Base.History;
|
||||
|
||||
namespace PARR.Core.Repositories.Base
|
||||
{
|
||||
public interface IBaseRepository<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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user