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