예제 #1
0
 public DATA0002DAL(int Thread)
 {
     this.FactoryID = GlobalVal.UserInfo.FactoryID;
     this.UserAD    = GlobalVal.UserInfo.LoginName;
     this.dbHelper  = new DBHelper(Thread, this.FactoryID);
 }
예제 #2
0
 public DATA0002DAL(DBHelper DB)
 {
     this.FactoryID = DB.FactoryID;
     this.UserAD    = GlobalVal.UserInfo.LoginName;
     this.dbHelper  = DB;
 }
예제 #3
0
 public DATA0002DAL(Form frm, int factoryID)
 {
     this.FactoryID = factoryID;
     this.UserAD    = GlobalVal.UserInfo.LoginName;
     this.dbHelper  = new DBHelper(frm);
 }