public ActionResult <List <ScheduleItem> > ThreeDay(int scheduleID)
 {
     try
     {
         return(_context.Get3DayScheduleItems(scheduleID, DateTime.Now));
     }
     catch (KeyNotFoundException)
     {
         return(NotFound());
     }
 }