Пример #1
0
 /// <summary>
 /// Constructs the clsSearchLogic class
 /// </summary>
 public clsSearchLogic()
 {
     try
     {
         dbLink      = new clsSearchSQL();
         invoiceList = GetInvoices(ref invoiceLength);
     }
     catch (Exception ex)
     {
         throw new Exception(MethodInfo.GetCurrentMethod().DeclaringType.Name + "." + MethodInfo.GetCurrentMethod().Name + " -> " + ex.Message);
     }
 }
Пример #2
0
 /// <summary>
 ///     Constructor generates SQL object for use
 /// </summary>
 public clsSearchLogic()
 {
     _SearchSQL = new clsSearchSQL();
 }