public ActionResult Index(ExceptionGroupIndexModel model)
 {
     if (model.StartCommitHash == null)
         model.StartCommitHash = SourceControlRepository.GetLatestTagName(14);
     if (model.EndCommitHash == null)
         model.EndCommitHash = "";
     ExceptionGroupRepository repo = new ExceptionGroupRepository();
     model.Entries = repo.GetExceptionGroups(model.StartCommitHash, model.EndCommitHash);
     ViewData.Model = model;
     return View();
 }
        public ActionResult Index(ExceptionGroupIndexModel model)
        {
            if (model.StartCommitHash == null)
            {
                model.StartCommitHash = SourceControlRepository.GetLatestTagName(14);
            }
            if (model.EndCommitHash == null)
            {
                model.EndCommitHash = "";
            }
            ExceptionGroupRepository repo = new ExceptionGroupRepository();

            model.Entries  = repo.GetExceptionGroups(model.StartCommitHash, model.EndCommitHash);
            ViewData.Model = model;
            return(View());
        }