Exemplo n.º 1
0
 public async Task UpdateIconAsync(IconEntity iconEntity)
 {
     _context.Update(iconEntity);
     await _context.SaveChangesAsync();
 }
Exemplo n.º 2
0
 public async Task UpdateGemAsync(GemEntity gemEntity)
 {
     _context.Update(gemEntity);
     await _context.SaveChangesAsync();
 }