public void WriteReview(string AccountID, int GoodID, int OrderID, string comments, long millidate, double star)
        {
            // I will do some changes here.
            DateTime date = HelperMethods.ConvertTime(millidate);

            gr.CreateOneComment(AccountID, GoodID, OrderID, comments, date, star);

            //return RedirectToAction("Contact", "Home");
        }