예제 #1
0
        public ViewResult Index()
        {
            var model = new HomePageViewModel(); //_commentData.GetAllComments();

            model.Comments = _commentData.GetAllComments();
            return(View(model));
        }
예제 #2
0
 public IActionResult GetAllComments()
 {
     return(Ok(_commentData.GetAllComments()));
 }