Ejemplo n.º 1
0
        public bool IsVisitante()
        {
            if (TipoMotorista.Contains("VISITA"))
            {
                return(true);
            }

            else
            {
                return(false);
            }
        }
Ejemplo n.º 2
0
        public bool IsAgregado()
        {
            if (TipoMotorista.Contains("AGREGADO"))
            {
                return(true);
            }

            else
            {
                return(false);
            }
        }