//[ValidateAntiForgeryToken]
        public Boolean AddWishListItemAjax(WhishUpdationModel lmd)
        {
            Boolean TheResult = false;

            if (!ModelState.IsValid)
            {
                return(TheResult);
            }
            Connection.Connection con = new Connection.Connection();
            TheResult = con.AddGood(lmd.AddingGood);
            return(TheResult);
        }