protected override StoreInfo GetStoreInfo(string storeName, HtmlNode restaurant)
 {
     if (restaurant == null)
     {
         return new Maticsoft.Model.NullStoreInfo();
     }
     var storeInfo = new Maticsoft.Model.StoreInfo();
     //storeInfo.StoreAddress = GetAddress(restaurant);
     storeInfo.StoreName = storeName;
     //storeInfo.StoreTag = GetStoreTag(restaurant);
     storeInfo.MaxPrice = GetMaxPrice(restaurant);
     return storeInfo;
 }
 protected override StoreInfo GetStoreInfo(string storeName, HtmlNode restaurant)
 {
     if (restaurant == null)
     {
         return new Maticsoft.Model.NullStoreInfo();
     }
     var storeInfo = new Maticsoft.Model.StoreInfo();
     storeInfo.StoreAddress = GetAddress(restaurant);
     storeInfo.StoreName = storeName;
     //storeInfo.MaxPrice = MaxPrice(restaurant);
     storeInfo.StoreTag = GetStoreTag(restaurant).Replace("  ", " ");
     //storeInfo.StorePhone = GetStorePhone(restaurant);
     //storeInfo.Facilities = GetFacilities(restaurant);
     return storeInfo;
 }