Beispiel #1
0
 public frmSelectDepartment(bool isMutiSelect)
 {
     InitializeComponent();
     InitBaseSelectForm(isMutiSelect, this.dgvDept, this.chkAll, _idColName, _chkColName);
     orgLogic  = new HR_OrgLogic(this);
     deptLogic = new HR_DepartmentLogic(this);
 }
Beispiel #2
0
 public frmEmpManage()
 {
     InitializeComponent();
     orgLogic  = new HR_OrgLogic(this);
     deptLogic = new HR_DepartmentLogic(this);
     empLogic  = new HR_EmployeeLogic(this);
 }
Beispiel #3
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 #4
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 #5
0
 public frmPurchaseReturn()
 {
     InitializeComponent();
     dictLineLogic = new SYS_DictItemLineLogic(this);
     orgLogic      = new HR_OrgLogic(this);
     returnLogic   = new ORD_PurchaseReturnLogic(this);
     inLineLogic   = new STK_InLineLogic(this);
     companyLogic  = new CRM_CompanyLogic(this);
     orderLogic    = new ORD_PurchaseOrderLogic(this);
 }
Beispiel #6
0
 public frmCustomerEdit()
 {
     InitializeComponent();
     this.GetEditEntity += new dlgGetEditEntity(Form_GetEditEntity);
     dictLineLogic       = new SYS_DictItemLineLogic(this);
     zoneLogic           = new CRM_ZoneLogic(this);
     orgLogic            = new HR_OrgLogic(this);
     deptLogic           = new HR_DepartmentLogic(this);
     companyLogic        = new CRM_CompanyLogic(this);
 }
Beispiel #7
0
 public frmSalesOrder()
 {
     InitializeComponent();
     this.GetEditEntity += new dlgGetEditEntity(Form_GetEditEntity);
     dictLineLogic       = new SYS_DictItemLineLogic(this);
     orgLogic            = new HR_OrgLogic(this);
     orderLogic          = new ORD_SalesOrderLogic(this);
     companyLogic        = new CRM_CompanyLogic(this);
     reserveLogic        = new STK_StockReserveLogic(this);
     noticeLogic         = new ORD_PurchaseNoticeLogic(this);
 }
Beispiel #8
0
 void InitForm(Guid?sourceBillGuid)
 {
     InitializeComponent();
     this.GetEditEntity += new dlgGetEditEntity(Form_GetEditEntity);
     dictLineLogic       = new SYS_DictItemLineLogic(this);
     orgLogic            = new HR_OrgLogic(this);
     returnLogic         = new ORD_SalesReturnLogic(this);
     outLineLogic        = new STK_OutLineLogic(this);
     companyLogic        = new CRM_CompanyLogic(this);
     orderLogic          = new ORD_SalesOrderLogic(this);
     _SOGuid             = sourceBillGuid;
 }
Beispiel #9
0
 void InitForm(string billType, Guid?sourceBillGuid)
 {
     InitializeComponent();
     stkOutLogic     = new STK_OutLogic(this);
     orgLogic        = new HR_OrgLogic(this);
     currencyLogic   = new SYS_CurrencyLogic(this);
     dictLineLogic   = new SYS_DictItemLineLogic(this);
     orderLineLogic  = new ORD_SalesOrderLineLogic(this);
     returnLogic     = new ORD_PurchaseReturnLogic(this);
     returnLineLogic = new ORD_PurchaseReturnLineLogic(this);
     reserveLogic    = new STK_StockReserveLogic(this);
     _billType       = billType;
     _sourceBillGuid = sourceBillGuid;
 }
Beispiel #10
0
 void InitForm(string billType, Guid?sourceBillGuid)
 {
     InitializeComponent();
     this.GetEditEntity += new dlgGetEditEntity(Form_GetEditEntity);
     dictLineLogic       = new SYS_DictItemLineLogic(this);
     orgLogic            = new HR_OrgLogic(this);
     purOrderLogic       = new ORD_PurchaseOrderLogic(this);
     purLineLogic        = new ORD_PurchaseOrderLineLogic(this);
     stkInLogic          = new STK_InLogic(this);
     companyLogic        = new CRM_CompanyLogic(this);
     currencyLogic       = new SYS_CurrencyLogic(this);
     stkStockLogic       = new STK_StockLogic(this);
     stkInLineLogic      = new STK_InLineLogic(this);
     stkStockSheetLogic  = new STK_StockSheetLogic(this);
     returnLogic         = new ORD_SalesReturnLogic(this);
     returnLineLogic     = new ORD_SalesReturnLineLogic(this);
     BillType            = billType;
     _sourceBillGuid     = sourceBillGuid;
 }