public ActionResult <IEnumerable <Note> > GetNotes(DateTime date)
        {
            IEnumerable <Note> notes = _customDayRepository.GetNotesForDay(date).ToList();

            if (notes == null || !notes.Any())
            {
                return(NotFound());
            }
            else
            {
                return(Ok(notes));
            }
        }