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