public void Insert(Appointment app)
        {
            var db = new AppointmentData();

            db.Insert(app);
        }