static public SqlCommand UpdateAppointment(Appointment appointment)
 {
     return(CreateSqlCommand(appointment, queryAppointmentUpdate));
 }
 static public SqlCommand AddAppointment(Appointment appointment)
 {
     return(CreateSqlCommand(appointment, queryAppointmentPost));
 }