Пример #1
0
 private void OnNewPatientCreated(NewPatientCreatedEventArgs e)
 {
     if (NewPatientCreated != null)
     {
         NewPatientCreated(this, e);
     }
 }
 private void OnNewPatientCreated(NewPatientCreatedEventArgs e)
 {
     if (NewPatientCreated != null)
     {
         NewPatientCreated(this, e);
     }
 }
 void PatientRegistrationServiceNewPatientCreated(object sender, NewPatientCreatedEventArgs e)
 {
     _messageBus.Publish(new NewPatientCreatedEvent()
     {
         ClientEmailAddress="",
         ClientLastName="",
         PatientName = e.Patient.Name,
         DateRegistered = DateTime.Now
     });
 }
Пример #4
0
 void PatientRegistrationServiceNewPatientCreated(object sender, NewPatientCreatedEventArgs e)
 {
     _messageBus.Publish(new NewPatientCreatedEvent()
     {
         ClientEmailAddress = "",
         ClientLastName     = "",
         PatientName        = e.Patient.Name,
         DateRegistered     = DateTime.Now
     });
 }