A class which represents the Suppliers table in the Northwind Database.
Inheritance: IActiveRecord
Esempio n. 1
0
 public static void Setup(int testItems) {
     SetTestRepo();
     for(int i=0;i<testItems;i++){
         Supplier item=new Supplier();
         _testRepo._items.Add(item);
     }
 }
Esempio n. 2
0
 public static void Setup(Supplier item) {
     SetTestRepo();
     _testRepo._items.Add(item);
 }