Exemple #1
0
 /// <summary>
 /// A constructor used to create a new entity object.
 /// Level: Data
 /// </summary>
 public ConnectionClass()
 {
     try
     {
         _Entities = new TheGreatSupermarketEntities();
     }
     catch (Exception Exception)
     {
         throw Exception;
     }
 }
Exemple #2
0
 /// <summary>
 /// A constructor used to create a new entity object.
 /// Level: Data
 /// </summary>
 /// <param name="isAdmin">Determines whether the user is or is not an Administrator to use and alternate connection string.</param>
 public ConnectionClass(bool isAdmin)
 {
     try
     {
         if (isAdmin == false)
         {
             _Entities = new TheGreatSupermarketEntities(ConfigurationManager.ConnectionStrings["TheGreatSupermarketEntitiesForUser"].ConnectionString);
         }
     }
     catch (Exception Exception)
     {
         throw Exception;
     }
 }