public void DeleteMedicamento([FromBody] int id)
        {
            MedicamentoService con = new MedicamentoService();

            con.DeleteMedicamento(id);
        }