Ejemplo n.º 1
0
 public async Task Update(Department entity)
 {
     _context.Update(entity);
     await _context.SaveChangesAsync();
 }
Ejemplo n.º 2
0
 public async Task Update(Employee entity)
 {
     _context.Update(entity);
     await _context.SaveChangesAsync();
 }