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