Beispiel #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="PatientController"/> class
 /// </summary>
 /// <param name="manageEmployee">manage Employee</param>
 public PatientController(ManagePatient managePatient)
 {
     this._managePatient = managePatient;
 }
Beispiel #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="PatientController"/> class.
 /// </summary>
 public PatientController()
 {
     this._managePatient = new ManagePatient();
 }