A class which represents the Orders table in the Northwind Database.
상속: IActiveRecord
예제 #1
0
 public static void Setup(int testItems) {
     SetTestRepo();
     for(int i=0;i<testItems;i++){
         Order item=new Order();
         _testRepo._items.Add(item);
     }
 }
예제 #2
0
 public static void Setup(Order item) {
     SetTestRepo();
     _testRepo._items.Add(item);
 }