Ejemplo n.º 1
0
 private void CloseDoctor()
 {
     if (CloseViewAction != null)
     {
         CloseViewAction.Invoke();
     }
 }
Ejemplo n.º 2
0
 private void DoctorSelect()
 {
     if (DoctorSelectEvent != null)
     {
         DoctorSelectEvent(_selectedDoctor);
     }
     if (CloseViewAction != null)
     {
         CloseViewAction.Invoke();
     }
 }