Example #1
0
        public string[] QueryAllCategorys()
        {
            PriceService.PriceClient client = new PriceClient();
            var categorys = client.GetCategorys();

            return(categorys);
        }
Example #2
0
 public void Query()
 {
     try
     {
         PriceService.PriceClient client = new PriceClient();
         var foods     = client.GetFoods();
         var rfoods    = foods.Where(it => !string.IsNullOrEmpty(it.Value)).ToList();
         var foodNames = client.GetFoodName();
         var categ     = client.GetCategorys();
         var tables    = client.GetTableNames();
         var dd        = client.GetMonitorSites();
         PriceService.FoodMonitor monitor = new FoodMonitor();
         monitor.FoodID   = foods[0].Key;
         monitor.FoodName = foods[0].Value;
         var result = client.FindFoodMonitors(null, null, true, 50, 0);
     }
     catch (Exception ex)
     {
         LogHelper.GetInstance().Error(ex.ToString());
         return;
     }
 }