public IActionResult Create(string title, string contents)
        {
            var blogEntry = _blogEntryRepository.CreateBlogEntry(title, contents, User.Identity.Name !);

            return(View(blogEntry));
        }