Exemplo n.º 1
0
 /// <summary>
 /// Default Constructor
 /// </summary>
 public wndMain()
 {
     try
     {
         InitializeComponent();
         ML = new clsMainLogic();
     }
     catch (Exception ex)
     {
         HandleError(MethodInfo.GetCurrentMethod().DeclaringType.Name,
                     MethodInfo.GetCurrentMethod().Name, ex.Message);
     }
 }
        /// <summary>
        /// Default Constructor
        /// </summary>
        public wndMain()
        {
            try
            {
                InitializeComponent();
                ML = new clsMainLogic();

                ///Will need to create invoice object here to send as part of object to search window.
            }
            catch (Exception ex)
            {
                HandleError(MethodInfo.GetCurrentMethod().DeclaringType.Name,
                            MethodInfo.GetCurrentMethod().Name, ex.Message);
            }
        }