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