Ejemplo n.º 1
0
 public async Task <IEnumerable <Punch> > GetAll() => await _context
 .Set <Punch>()
 .AsNoTracking()
 .ToListAsync();
Ejemplo n.º 2
0
 public async Task <IEnumerable <Employee> > GetAll() => await _context
 .Set <Employee>()
 .AsNoTracking()
 .ToListAsync();