public ShopLot GetShopLot(string name) { var buffer = MyDb.GetData(name, "ShopLot"); ShopLot result = new ShopLot("null", "null", "null", 1); result.Load(buffer); return(result); }
public Account GetAccount(string name) { var buffer = MyDb.GetData(name, "Account"); Account result = new Account("null", "null"); result.Load(buffer); return(result); }