Example #1
0
 public static bool addCustomItemPair(List<ItemPair> itemPair, int intTestID, string strError)
 {
     ItemPairDB db = new ItemPairDB();
     return db.AddCustomItemPairs(itemPair, intTestID, strError);
 }
Example #2
0
 public static bool delCustomItemPair(int intTestID, string strError)
 {
     ItemPairDB db = new ItemPairDB();
     return db.DelCustomItemPairs(intTestID, strError);
 }
Example #3
0
 //Programmer: Jeremiah Montano
 //Date: November 11, 2018
 ///<summary>Gets list of Custom Item Pairs for custom comparison test</summary>
 public static List<ItemPair> getCustomItemPair(int intTestID)
 {
     ItemPairDB db = new ItemPairDB();
     List<ItemPair> itemPair = db.GetCustomItemPairs(intTestID);
     return itemPair;
 }