public static SInventoryPage ConstructFromBaseClass(InventoryPage baseClass)
        {
            var s = new SInventoryPage(0, 0, 0, 0);

            s.BaseInventoryPage = baseClass;
            return(s);
        }
示例#2
0
 public static SInventoryPage ConstructFromBaseClass(InventoryPage baseClass)
 {
     var s = new SInventoryPage(0, 0, 0, 0) {BaseInventoryPage = baseClass};
     return s;
 }