예제 #1
0
        public Employee(Bll_Bse_Employee employeeInstance, Bll_Dept deptInstance, Bse_Employee _EmplyeeModel)
        {
            InitializeComponent();
            DeptInstance = deptInstance;
            EmployeeInstance = employeeInstance;
            EmplyeeModel = _EmplyeeModel;

            this.Load+=new EventHandler(Employee_Load);
        }
예제 #2
0
파일: Dept.cs 프로젝트: youthjoy/cshelper
        public Dept(string pCode, string pName, Bll_Dept _instance, Bll_Bse_Employee _employeeInstance, Bse_Department _model)
        {
            this.Refresh();
            InitializeComponent();
            instance = _instance;
            employeeInstance = _employeeInstance;
            GModel = _model;

            this.Load+=new EventHandler(Dept_Load);
        }