Example #1
0
 public HOTReportMachine()
 {
     InitializeComponent();
     //runManager = (IRunManager)RemotingHelper.GetObject(typeof(IRunManager));
     //profileManager = (IProfileManager)RemotingHelper.GetObject(typeof(IRunManager));
     _ProductReportBL = new ProductReportBL(Common.Util.ConfigUtil.GetAppSetting("ConnectionString"));
     InitGui();
 }
Example #2
0
 public HOTReportSelfCheck()
 {
     InitializeComponent();
     _ProductReportBL = new ProductReportBL(Common.Util.ConfigUtil.GetAppSetting("ConnectionString"));
     this._areaMasterBL = MasterBLLFactory.GetBLL<IAreaMasterBL>(MasterBLLFactory.AreaMaster);
     this._MachineMasterBL = new MachineMasterBL();
     this._codeMasterBL = MasterBLLFactory.GetBLL<ICodeMasterBL>(MasterBLLFactory.CodeMaster_cmt);
     this._shiftTypeMasterBL = MasterBLLFactory.GetBLL<IShiftTypeMasterBL>(MasterBLLFactory.ShiftTypeMaster_stm);
     InitGui();
 }
Example #3
0
        public LAMReportMachine()
        {
            InitializeComponent();
            //runManager = (IRunManager)RemotingHelper.GetObject(typeof(IRunManager));
            //profileManager = (IProfileManager)RemotingHelper.GetObject(typeof(IRunManager));

            _ProductReportBL = new ProductReportBL(Common.Util.ConfigUtil.GetAppSetting("ConnectionString"));
            //this._areaMasterBL = MasterBLLFactory.GetBLL<IAreaMasterBL>(MasterBLLFactory.AreaMaster);
            //this._MachineMasterBL = MasterBLLFactory.GetBLL<IMachineMasterBL>(MasterBLLFactory.MachineMaster_mmt);

            InitGui();
        }