Ejemplo n.º 1
0
        public void run(string function)
        {
            CSConfigurationDAO csConfigurationDAO = new CSConfigurationDAO();
            GlobalValues.mallSetup = csConfigurationDAO.get(CSConfiguration.Sections.General, CSConfiguration.Parameters.MallSetup).Value;
            SaleInfoUtil saleInfoUtil = new SaleInfoUtil();
            CSSale csSale = saleInfoUtil.getSaleInfo();
            function = "SETTLE";
            switch (function)
            {
                case "SETTLE":
                    //SettleCheckFormHelper settleCheckFormHelper = new SettleCheckFormHelper(csSale);
                    SettleCheckForm settleCheckForm = new SettleCheckForm(csSale);
                    settleCheckForm.ShowDialog();
                    break;
                default://Sale Info

                    break;
            }

            // saleInfoUtil.tester();
        }
 public SettleCheckFormHelper(SettleCheckForm settleCheckForm)
 {
     this.settleCheckForm = settleCheckForm;
 }