public ActionResult Delete(int id)
        {
            var userId  = Guid.Parse(User.Identity.GetUserId());
            var service = new FollowUpService(userId);
            var model   = service.GetFollowUpById(id);

            return(View(model));
        }
        public ActionResult FollowUpEdit(int id)
        {
            var userId  = Guid.Parse(User.Identity.GetUserId());
            var service = new FollowUpService(userId);
            var detail  = service.GetFollowUpById(id);
            var model   =
                new FollowUpEdit
            {
                FollowUpID       = detail.FollowUpID,
                ShortDescription = detail.ShortDescription,
                FollowUpStatusID = detail.FollowUpStatusID,
                Notes            = detail.Notes,
                DueUtc           = (DateTimeOffset)detail.DueUtc
            };

            return(View(model));
        }