Example #1
0
 public async Task Create(T entity)
 {
     _context.Add(entity);
     await SaveAsync();
 }