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