public ActionResult <List <ScheduleItem> > GetAll(int scheduleID)
 {
     try
     {
         return(_context.GetAllScheduleItems(scheduleID));
     }
     catch (KeyNotFoundException)
     {
         return(NotFound());
     }
 }