예제 #1
0
        public ShopLot GetShopLot(string name)
        {
            var     buffer = MyDb.GetData(name, "ShopLot");
            ShopLot result = new ShopLot("null", "null", "null", 1);

            result.Load(buffer);
            return(result);
        }
예제 #2
0
        public Account GetAccount(string name)
        {
            var     buffer = MyDb.GetData(name, "Account");
            Account result = new Account("null", "null");

            result.Load(buffer);
            return(result);
        }