Exemplo n.º 1
0
        public TestDataTestTracker(string sn, int op)
        {
            this.SerialNumber = sn;
            this.Operation    = op;
            dbAccess.SetConnStr(DBConnectionStr.ConnStrTestData());

            SelectTbl();
        }
Exemplo n.º 2
0
        public TestDataTestTracker(string sn)
        {
            this.SerialNumber = sn;

            dbAccess.SetConnStr(DBConnectionStr.ConnStrTestData());

            SelectTblAllOps();
        }
Exemplo n.º 3
0
        public TestDataTestOps(string pn, string ver)
        {
            this.PartNumber = pn;
            this.Version    = ver;
            dbAccess.SetConnStr(DBConnectionStr.ConnStrTestData());

            SelectTbl();
        }
Exemplo n.º 4
0
 public TestDataTestTracker()
 {
     dbAccess.SetConnStr(DBConnectionStr.ConnStrTestData());
 }
Exemplo n.º 5
0
 public TestDataTestOps(int pID)
 {
     this.pID = pID;
     dbAccess.SetConnStr(DBConnectionStr.ConnStrTestData());
 }