// GET: Projection
        public ActionResult Index()
        {
            ProjectionViewListingModel model = new ProjectionViewListingModel();

            model.Projections = ProjectionService.GetProjections();
            return(View(model));
        }