Ejemplo n.º 1
0
        public string Get([FromUri] int paramOne)
        {
            PrescriptionOperations prescriptionOperations = new PrescriptionOperations();

            return(prescriptionOperations.GetPrescriptionfromDatabase(paramOne));
        }
        public void GetPrescriptionFromDatabaseTest()
        {
            var po = new PrescriptionOperations();

            Assert.AreEqual("", po.GetPrescriptionfromDatabase(1));
        }