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