public ActionResult _AddShopComment(ShopCommentModel comment)//int shopID, string title, string comment, string userName)
        {
            if (comment != null)
            {
                ShopComment c = new ShopComment();
                c.ShopID   = comment.ShopID;
                c.UserName = comment.UserName;
                c.Text     = comment.Text;
                c.Title    = comment.Title;

                ShoppingService.AddShopComment(c);
                return(PartialView("_ShopComment", comment));
            }
            return(Content(string.Empty));
        }