public void Add(T entity) { try { _context.Set <T>().Add(entity); _context.SaveChanges(); } catch (Exception) { throw; } }