Beispiel #1
0
 public void PerformRequestToThePharmaceuticalFormEndpoint()
 {
     this.SetupAndAssertControllerAllRecords(
         () => this._controller.PharmaceuticalForm(),
         dataService => dataService.GetPharmaceuticalForms(),
         StubData.GetAllPharmaceuticalForms());
 }
Beispiel #2
0
 public void PerformRequestToThePharmaceuticalFormEndpointWithIdentifier(string identifier)
 {
     this.SetupAndAssertControllerSingleRecord(
         identifier,
         id => this._controller.PharmaceuticalFormById(id),
         dataService => dataService.GetPharmaceuticalForms(),
         StubData.GetAllPharmaceuticalForms());
 }