예제 #1
0
 public TransactionRecord()
 {
     InitializeComponent();
     this.Closing += new System.ComponentModel.CancelEventHandler(WindowBoder_Closing);
     control       = new Controller.TransactionRecordController(this);
     TampilData();
 }
예제 #2
0
 public TransactionRecord(string _kdKaryawan)
 {
     this.KdKaryawan = _kdKaryawan;
     InitializeComponent();
     this.Closing += new System.ComponentModel.CancelEventHandler(WindowBoder_Closing);
     control       = new Controller.TransactionRecordController(this, _kdKaryawan);
     TampilData();
 }