public bool TaggearPaciente(int p_pacienteId, int p_tagId)
        {
            int c = QTA.Insert_TagToPaciente(p_pacienteId, p_tagId);

            if (c > 0)
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }