コード例 #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();
 }