Exemplo n.º 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);
        }
Exemplo n.º 2
0
        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);
        }