public async Task Add(TEntity obj)
 {
     _context.Set <TEntity>().Add(obj);
     await _context.SaveChangesAsync();
 }