public bool IsVisitante()
        {
            if (TipoMotorista.Contains("VISITA"))
            {
                return(true);
            }

            else
            {
                return(false);
            }
        }
        public bool IsAgregado()
        {
            if (TipoMotorista.Contains("AGREGADO"))
            {
                return(true);
            }

            else
            {
                return(false);
            }
        }