Beispiel #1
0
 public ProductWhere()
 {
     Id = new IntProperty("id");
     SearchQuery = new StringSearchQueryProperty("searchQuery");
     StoreId = new IntProperty("storeId");
     IsDiscontinued = new BoolProperty("is_discontinued");
     IsDead = new BoolProperty("is_dead");
     HasValueAddedPromotion = new BoolProperty("has_value_added_promotion");
     HasLimitedTimeOffer = new BoolProperty("has_limited_time_offer");
     HasBonusRewardMiles = new BoolProperty("has_bonus_reward_miles");
     IsSeasonal = new BoolProperty("is_seasonal");
     IsVqa = new BoolProperty("is_vqa");
     IsKosher = new BoolProperty("is_kosher");
 }
Beispiel #2
0
 public StoreWhere()
 {
     SearchQuery = new StringSearchQueryProperty("searchQuery");
     Geolocation = new StringSearchQueryProperty("geo");
     ProductId = new IntProperty("productId");
     IsDead = new BoolProperty("is_dead");
     HasWheelchairAccessability = new BoolProperty("has_wheelchair_accessability");
     HasBilingualServices = new BoolProperty("has_bilingual_services");
     HasProductConsultant = new BoolProperty("has_product_consultant");
     HasTastingBar = new BoolProperty("has_tasting_bar");
     HasBeerColdRoom = new BoolProperty("has_beer_cold_room");
     HasSpecialOccasionPermits = new BoolProperty("has_special_occasion_permits");
     HasVintageCorner = new BoolProperty("has_vintages_corner");
     HasParking = new BoolProperty("has_parking");
     HasTransitAccess = new BoolProperty("has_transit_access");
 }
 public InventoryWhere()
 {
     StoreId = new IntProperty("storeId");
     ProductId = new IntProperty("productId");
     IsDead = new BoolProperty("is_dead");
 }