public void Add <TEntity>(TEntity item) where TEntity : class
 {
     try
     {
         _db.Add(item);
     }
     catch (Exception e)
     {
         throw;
     }
 }