// Tutaj wyświetlam wszystkie wizyty
        public ViewResult GetAllAppointment()
        {
            var model = _appointmentRepository.GetAllAppointment();

            ViewBag.TerazJest = DateTime.Now;
            return(View(model));

            ;
        }