コード例 #1
0
 public BiopsyController(IPatientStore patientStore, IBiopsyStore biopsyStore)
 {
     _patientStore = this.GetOrThrowArgumentNullException(patientStore, "patientStore");
     _biopsyStore  = this.GetOrThrowArgumentNullException(biopsyStore, "biopsyStore");
 }
コード例 #2
0
 public PatientController(IPatientStore patientStore)
 {
     _patientStore = this.GetOrThrowArgumentNullException(patientStore, "patientStore");
 }
コード例 #3
0
 public PatientController(IPatientStore patientStore)
 {
     _patientStore = this.GetOrThrowArgumentNullException(patientStore, "patientStore");
 }
コード例 #4
0
 public BiopsyController(IPatientStore patientStore, IBiopsyStore biopsyStore)
 {
     _patientStore = this.GetOrThrowArgumentNullException(patientStore, "patientStore");
     _biopsyStore = this.GetOrThrowArgumentNullException(biopsyStore, "biopsyStore");
 }
コード例 #5
0
 public ScheduleEngine(IPatientStore store)
 {
     _patientStore = store;
 }
 public ProbabilisticMpiCache(IPatientStore store, IMpiConfiguration configuration) : base(store, configuration)
 {
 }
コード例 #7
0
 protected ProbabilisticMpiCacheBase(IPatientStore store, IMpiConfiguration configuration)
 {
     _configuration = configuration;
     _matchEngine   = new MatchEngine(configuration);
     _patientStore  = store;
 }