예제 #1
0
 public FrmEditEmployee(string id, string name, string gender, string address, string phone, string birthday, string position)
 {
     InitializeComponent();
     employee      = new BL.BL_EditEmployee(this);
     this.id       = id;
     this.name     = name;
     this.gender   = gender;
     this.address  = address;
     this.phone    = phone;
     this.birthday = birthday;
     this.position = position;
 }
예제 #2
0
 public FrmEditEmployee()
 {
     InitializeComponent();
     employee = new BL.BL_EditEmployee(this);
 }