Beispiel #1
0
 public frmEmpManage()
 {
     InitializeComponent();
     orgLogic  = new HR_OrgLogic(this);
     deptLogic = new HR_DepartmentLogic(this);
     empLogic  = new HR_EmployeeLogic(this);
 }
Beispiel #2
0
 public frmEditEmp()
 {
     InitializeComponent();
     this.GetEditEntity += new dlgGetEditEntity(Form_GetEditEntity);
     empLogic            = new HR_EmployeeLogic(this);
     orgLogic            = new HR_OrgLogic(this);
     deptLogic           = new HR_DepartmentLogic(this);
     dictLineLogic       = new SYS_DictItemLineLogic(this);
 }
Beispiel #3
0
 public frmSysEmpDataRight()
 {
     InitializeComponent();
     roleLogic         = new Sys_RoleLogic(this);
     empDataRightLogic = new Sys_EmpDataRightLogic(this);
     orgLogic          = new HR_OrgLogic(this);
     deptLogic         = new HR_DepartmentLogic(this);
     empLogic          = new HR_EmployeeLogic(this);
 }
Beispiel #4
0
        public frmSelectEmp(bool isMutiSelect)
        {
            InitializeComponent();
            InitBaseSelectForm(isMutiSelect, this.dgvEmp, this.chkAll, _idColName, _chkColName);

            orgLogic  = new HR_OrgLogic(this);
            deptLogic = new HR_DepartmentLogic(this);
            empLogic  = new HR_EmployeeLogic(this);
        }
Beispiel #5
0
 public frmPurchaseNotice()
 {
     InitializeComponent();
     orderLogic     = new ORD_SalesOrderLogic(this);
     orderLineLogic = new ORD_SalesOrderLineLogic(this);
     dictLineLogic  = new SYS_DictItemLineLogic(this);
     empLogic       = new HR_EmployeeLogic(this);
     noticeLogic    = new ORD_PurchaseNoticeLogic(this);
     noNoticedPanel = usgNoNoticed.PrimaryGrid;
     noticedPanel   = usgNoticed.PrimaryGrid;
     InitializeGrid();
     BindComboBox();
 }