dal + other
This commit is contained in:
19
PARR.DAL/Services/Interfaces/Base/IBaseService.cs
Normal file
19
PARR.DAL/Services/Interfaces/Base/IBaseService.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using PARR.DAL.Models.Base;
|
||||
|
||||
namespace PARR.DAL.Services.Interfaces.Base
|
||||
{
|
||||
public interface IBaseService<T> where T : class, IBase
|
||||
{
|
||||
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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user