コード例 #1
0
 public static bool getTestID(Test test, string stringErrorString)
 {
     return(TestDB.getTestIDAndType(test, ref stringErrorString));
 }
コード例 #2
0
ファイル: Test.cs プロジェクト: jmontano86/TeamMegan
 public static bool deleteTest(int intTestID, ref string stringErrorString)
 {
     return(TestDB.deleteTest(intTestID, ref stringErrorString));
 }
コード例 #3
0
ファイル: Test.cs プロジェクト: jmontano86/TeamMegan
 public static bool getTestType(ref string testType, int testID, ref string errorString)
 {
     return(TestDB.getTestType(ref testType, testID, ref errorString));
 }
コード例 #4
0
ファイル: Test.cs プロジェクト: jmontano86/TeamMegan
 public static bool addTest(Test test, ref string stringErrorString)
 {
     return(TestDB.addTest(test, ref stringErrorString));
 }
コード例 #5
0
ファイル: Test.cs プロジェクト: jmontano86/TeamMegan
 public static bool getTestNames(List <string> listTestNames, ref string stringErrorString)
 {
     return(TestDB.getTestNames(listTestNames, ref stringErrorString));
 }
コード例 #6
0
ファイル: Test.cs プロジェクト: jmontano86/TeamMegan
 public static bool getTestSessions(List <int> listTestIDList, ref string stringErrorString)
 {
     return(TestDB.getTestSessions(listTestIDList, ref stringErrorString));
 }
コード例 #7
0
ファイル: Test.cs プロジェクト: jmontano86/TeamMegan
 public static bool getTests(List <Test> listTestList, ref string stringErrorString)
 {
     return(TestDB.getTests(listTestList, ref stringErrorString));
 }
コード例 #8
0
ファイル: Test.cs プロジェクト: jmontano86/TeamMegan
        public static void updateCustomTest(int intTestID, int intCustomTest, int intShuffleBit)
        {
            TestDB db = new TestDB();

            db.updateCustomTest(intTestID, intCustomTest, intShuffleBit);
        }