예제 #1
0
        public bool IsVisitante()
        {
            if (TipoMotorista.Contains("VISITA"))
            {
                return(true);
            }

            else
            {
                return(false);
            }
        }
예제 #2
0
        public bool IsAgregado()
        {
            if (TipoMotorista.Contains("AGREGADO"))
            {
                return(true);
            }

            else
            {
                return(false);
            }
        }