Exemplo n.º 1
0
 /// <summary>
 /// initialization of all class level variables
 /// </summary>
 public clsMainLogic()
 {
     try
     {
         Query = new clsMainSQL();
         db    = new ShoeStore.clsDataAccess();
     }
     catch (Exception ex)
     {
         throw new Exception(MethodInfo.GetCurrentMethod().DeclaringType + "." +
                             MethodInfo.GetCurrentMethod().Name + "->" + ex.Message);
     }
 }
Exemplo n.º 2
0
 public clsItemsSQL()
 {
     ds = new DataSet();
     db = new ShoeStore.clsDataAccess();
 }