public Appointment GetById(int id)
        {
            var db = new AppointmentData();

            return(db.GetById(id));
        }