Esempio n. 1
0
 // This call was implemented as part of a demo - the service is not currently available on the internet
 public esb.appointmentResponse makeAppointmentEsb(string appointmentDate, string appointmentLength, string clinicIen, string patientIen, string patientSsn)
 {
     esb.AppointmentWorkflowService svc      = new esb.AppointmentWorkflowService();
     esb.appointmentResponse        response = svc.makeAppointmentWorkflow(new esb.appointment()
     {
         appointmentDate   = appointmentDate,
         appointmentLength = appointmentLength,
         clinicIen         = clinicIen,
         patientIen        = patientIen,
         patientSsn        = patientSsn
     });
     return(response);
 }
Esempio n. 2
0
 // This call was implemented as part of a demo - the service is not currently available on the internet
 public esb.appointmentResponse makeAppointmentEsb(string appointmentDate, string appointmentLength, string clinicIen, string patientIen, string patientSsn)
 {
     esb.AppointmentWorkflowService svc = new esb.AppointmentWorkflowService();
     esb.appointmentResponse response = svc.makeAppointmentWorkflow(new esb.appointment()
     {
         appointmentDate = appointmentDate,
         appointmentLength = appointmentLength,
         clinicIen = clinicIen,
         patientIen = patientIen,
         patientSsn = patientSsn
     });
     return response;
 }