コード例 #1
0
 public PatientsController(Repositories.IPatientRepository patientRepository)
 {
     repository = patientRepository;
     svcPatient = new PatientService(AppService.Current.DataContextV2);
 }
コード例 #2
0
 public PatientsController()
 {
     repository = new Repositories.PatientRepository();
     svcPatient = new PatientService(AppService.Current.DataContextV2);
 }