示例#1
0
 public EmployeeList(MainForm parent)
 {
     InitializeComponent();
     this.parentForm = parent;
     this.Dock       = DockStyle.Fill;
     newEmployee     = new addEmployeeInstance(this);
 }
示例#2
0
 public addEmpForm(addEmployeeInstance parent)
 {
     InitializeComponent();
     this.parentInstance        = parent;
     this.birthDatePicker.Value = DateTime.Now;
 }
示例#3
0
 public addUserForm(addEmployeeInstance parent)
 {
     InitializeComponent();
     this.parentInstance = parent;
 }