Example #1
0
        private object GetJSONSkinStock(int forDay, int skinsQ)
        {
            StockResponseSkins resp = new StockResponseSkins(skinsQ);
            string             json = new JavaScriptSerializer().Serialize(resp);

            return(json);
        }
Example #2
0
        public string GetJSONSkinStock(int day)
        {
            StockResponseSkins resp = new StockResponseSkins(this.ReturnSkinStock());
            string             json = new JavaScriptSerializer().Serialize(resp);

            return(json);
        }
Example #3
0
 public string GetJSONSkinStock(int day)
 {
     StockResponseSkins resp = new StockResponseSkins(this.ReturnSkinStock());
     string json = new JavaScriptSerializer().Serialize(resp);
     return json;
 }
Example #4
0
 private object GetJSONSkinStock(int forDay, int skinsQ)
 {
     StockResponseSkins resp = new StockResponseSkins(skinsQ);
     string json = new JavaScriptSerializer().Serialize(resp);
     return json;
 }