Exemplo n.º 1
0
 public async Task <IEnumerable <TEntity> > GetAllAsync()
 {
     return(await _unitOfWork.GetConnection().GetAllAsync <TEntity>());
 }
Exemplo n.º 2
0
 public IEnumerable <TEntity> GetAll()
 {
     return(_unitOfWork.GetConnection().GetAll <TEntity>());
 }