public void Commit()
 {
     try
     {
         _dbContext.SaveChanges();
     }
     catch (Exception e)
     {
         //var newException = new FormattedDbEntityValidationException(e);
         throw e;
     }
 }