public IActionResult CreateWorkout()
 {
     ViewBag.Goals = GoalBs.GetAll();
     return(View());
 }
        public IActionResult Index()
        {
            var goals = goalBs.GetAll();

            return(View(goals));
        }