A class which represents the Employees 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++){
         Employee item=new Employee();
         _testRepo._items.Add(item);
     }
 }
Esempio n. 2
0
 public static void Setup(Employee item) {
     SetTestRepo();
     _testRepo._items.Add(item);
 }