예제 #1
0
 public async Task Update(Department entity)
 {
     _context.Update(entity);
     await _context.SaveChangesAsync();
 }
예제 #2
0
 public async Task Update(Employee entity)
 {
     _context.Update(entity);
     await _context.SaveChangesAsync();
 }