public string _AddNoteForProduct(int productID, string text)
        {
            if (!string.IsNullOrEmpty(text))
            {
                var data = ShoppingService.AddOrEditNoteForProduct(productID, text);

                return(data.Text);
            }
            return(string.Empty);
        }