// GET: Course



        public ActionResult Entry()
        {
            var model = new CourseEntryVM();

            model.OrganizationLookUps = _lookUp.GetOrganizations();;
            return(View(model));
        }