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