Ejemplo n.º 1
0
 public async Task Add(T entity)
 {
     _context.Set <T>().Add(entity);
     await _context.SaveChangesAsync();
 }