コード例 #1
0
ファイル: AdvanceOffWork.cs プロジェクト: Klutzdon/PBIMSN
        private Guid _TargetID; //區域ID

        #endregion Fields

        #region Constructors

        public AdvanceOffWork()
        {
            InitializeComponent();
            this.lvInfo.Font = ControlSetting.ListFont;
            this._IAheadOfOffDutyBL = MasterBLLFactory.GetBLL<IAheadOfOffDutyBL>(MasterBLLFactory.AheadOfOffDutyMaster);
            this._areaMasterBL = MasterBLLFactory.GetBLL<IAreaMasterBL>(MasterBLLFactory.AreaMaster);
        }
コード例 #2
0
ファイル: VacationManagement.cs プロジェクト: Klutzdon/PBIMSN
 public VacationManagement()
 {
     InitializeComponent();
     this.lvInfo.Font = ControlSetting.ListFont;
     this.lbArea.Font = ControlSetting.ListFont;
     this._VacationMasterBL = MasterBLLFactory.GetBLL<IVacationMasterBL>(MasterBLLFactory.VacationMaster);
     _areaMasterBL = MasterBLLFactory.GetBLL<IAreaMasterBL>(MasterBLLFactory.AreaMaster);
 }
コード例 #3
0
ファイル: HOTReportSelfCheck.cs プロジェクト: Klutzdon/PBIMSN
 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();
 }
コード例 #4
0
ファイル: FrmAreaInfo.cs プロジェクト: Klutzdon/PBIMSN
        public FrmAreaInfo()
        {
            InitializeComponent();

            try
            {
                this._areaMasterBL = MasterBLLFactory.GetBLL<IAreaMasterBL>(MasterBLLFactory.AreaMaster);
            }
            catch (Exception Ex)
            {

                throw Ex;
            }
        }
コード例 #5
0
ファイル: AreaMaster.cs プロジェクト: Klutzdon/PBIMSN
        public AreaMaster()
        {
            InitializeComponent();
            this.lvwArea.Font = ControlSetting.ListFont;
            this.lvwMachine.Font = ControlSetting.ListFont;
            this.sysToolBar.OnItemNew_Click += AddArea;
            try
            {
                this._areaMasterBL = MasterBLLFactory.GetBLL<IAreaMasterBL>(MasterBLLFactory.AreaMaster);
            }
            catch (Exception Ex)
            {

                throw Ex;
            }
        }
コード例 #6
0
        public AreaMasterAddMainces()
        {
            InitializeComponent();

            objAreMaster = null;

            this._currentAreMaster = null;

            try
            {
                this._areaMasterBL = MasterBLLFactory.GetBLL<IAreaMasterBL>(MasterBLLFactory.AreaMaster);
            }
            catch (Exception Ex)
            {

                throw Ex;
            }
        }
コード例 #7
0
        public FShiftTargetYieldSchedule()
        {
            InitializeComponent();
            this.lvArea.Font = ControlSetting.ListFont;
            this.lvMachines.Font = ControlSetting.ListFont;
            this.lvTargetYieldScheduleInfo.Font = ControlSetting.ListFont;
            try
            {
                this._shiftTargetYieldScheduleBL = MasterBLLFactory.GetBLL<IShiftTargetYieldScheduleBL>(MasterBLLFactory.ShiftTargetYieldSchedule);

                this._areaMasterBL = MasterBLLFactory.GetBLL<IAreaMasterBL>(MasterBLLFactory.AreaMaster);

                this._generalBL = GeneralBLLFactory.GetBLL<IGeneralBL>(GeneralBLLFactory.General);
            }
            catch (Exception Ex)
            {

                throw Ex;
            }

            _displayInfo = null;
        }