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