public BiopsyController(IPatientStore patientStore, IBiopsyStore biopsyStore)
 {
     _patientStore = this.GetOrThrowArgumentNullException(patientStore, "patientStore");
     _biopsyStore  = this.GetOrThrowArgumentNullException(biopsyStore, "biopsyStore");
 }
 public AlequotController(IBiopsyStore biopsyStore)
 {
     _biopsyStore = this.GetOrThrowArgumentNullException(biopsyStore, "biopsyStore");
 }
 public ProductController(IProductStore productStore, IBiopsyStore biopsyStore)
 {
     _productStore = this.GetOrThrowArgumentNullException(productStore, "productStore");
     _biopsyStore = this.GetOrThrowArgumentNullException(biopsyStore, "biopsyStore");
 }
 public BiopsyController(IPatientStore patientStore, IBiopsyStore biopsyStore)
 {
     _patientStore = this.GetOrThrowArgumentNullException(patientStore, "patientStore");
     _biopsyStore = this.GetOrThrowArgumentNullException(biopsyStore, "biopsyStore");
 }
示例#5
0
 public AlequotController(IBiopsyStore biopsyStore)
 {
     _biopsyStore = this.GetOrThrowArgumentNullException(biopsyStore, "biopsyStore");
 }
 public ProductController(IProductStore productStore, IBiopsyStore biopsyStore)
 {
     _productStore = this.GetOrThrowArgumentNullException(productStore, "productStore");
     _biopsyStore  = this.GetOrThrowArgumentNullException(biopsyStore, "biopsyStore");
 }