Untitled
unknown
plain_text
3 years ago
1.0 kB
9
Indexable
using System;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using System.Text;
using System.Threading.Tasks;
namespace Company.Data.Interfaces
{
public interface IDbService
{
Task<List<TDto>> GetAsync<TEntity, TDto>() where TEntity : class, IEntity where TDto : class;
Task<TDto> SingleAsync<TEntity, TDto>(Expression<Func<TEntity, bool>> expression) where TEntity : class, IEntity where TDto : class;
Task<bool> AnyAsync<TEntity>(Expression<Func<TEntity, bool>> expression) where TEntity : class, IEntity;
Task<bool> SaveChangesAsync();
Task<TEntity> AddAsync<TEntity, TDto>(TDto dto) where TEntity : class where TDto : class;
void Update<TEntity, TDto>(int id, TDto dto) where TEntity : class, IEntity where TDto : class;
Task<bool> DeleteAsync<TEntity>(int id) where TEntity : class, IEntity;
bool Delete<TReferenceEntity, TDto>(TDto dto) where TReferenceEntity : class where TDto : class;
}
}Editor is loading...