public ActionResult GetAll()
        {
            var Lista_medicamentos = _medicamentoService.GetAllMedicamentos();

            return(Ok(Lista_medicamentos));
        }
        public IHttpActionResult GetAllMedicamentos()
        {
            MedicamentoService con = new MedicamentoService();

            return(Ok(con.GetAllMedicamentos()));
        }