public JsonResult _GetProductsForAutoComplete(int shopID, string text)
        {
            var data = ShoppingService.GetProductAutocomplete(shopID, text);

            return(Json(data));
        }