public RegisterPatientController(IRegisterPatientService testSvc)
 {
     registerPatientSvervice = testSvc;
 }
Esempio n. 2
0
 public RegisterPatientController(IRegisterPatientService testService)
 {
     regPatientService = testService;
 }
 public RegisterPatientController()
 {
     registerPatientSvervice = ServiceFactory.GetService <IRegisterPatientService>();
 }
Esempio n. 4
0
 public RegisterPatientController()
 {
     regPatientService = new RegisterPatientService();
 }