public string Get() { PrescriptionOperations prescriptionOperations = new PrescriptionOperations(); return(prescriptionOperations.GetAllPrescriptions()); }
public void GetAllPrescriptionsTest() { var po = new PrescriptionOperations(); Assert.AreEqual("", po.GetAllPrescriptions()); }