public ActionResult Show(int license)
        {
            List <Comment> foundComments      = Comment.GetCommentsByLicense(license);
            Dispensary     foundDispensary    = Dispensary.FindByLicense(license);
            string         name               = foundDispensary.GetName();
            Scraper        foundScraper       = Scraper.FindByName(name);
            Dictionary <string, object> model = new Dictionary <string, object> {
            };

            model.Add("dispensary", foundDispensary);
            model.Add("comments", foundComments);
            model.Add("scraper", foundScraper);
            return(View(model));
        }
        public ActionResult CreateComment(int license, string review, int rating)
        {
            Comment newComment = new Comment(review, rating, license);

            newComment.Save();
            List <Comment> foundComments      = Comment.GetCommentsByLicense(license);
            Dispensary     foundDispensary    = Dispensary.FindByLicense(license);
            Dictionary <string, object> model = new Dictionary <string, object> {
            };
            string  name         = foundDispensary.GetName();
            Scraper foundScraper = Scraper.FindByName(name);

            model.Add("dispensary", foundDispensary);
            model.Add("comments", foundComments);
            model.Add("scraper", foundScraper);
            return(View("Show", model));
        }