public void OnGet()

        {
            this.Mensaje = config["Mensaje"];

            this.Vehiculos = VehiculoService.GetVehiculosPorMatricula(Texto);
        }
Esempio n. 2
0
        public void OnGet(int Id, string nombre, string apellido)

        {
            this.Idcliente = Id;
            this.Apellidos = apellido;
            this.Nombres   = nombre;

            this.Mensaje = config["Mensaje"];

            this.Vehiculos = VehiculoService.GetVehiculosPorMatricula(Texto);
        }