Beispiel #1
0
        static void Buscar()
        {
            Console.WriteLine("Ingrese el id del agente");
            int id = Convert.ToInt32(Console.ReadLine());

            agente = repository.GetbyId(id);
            if (agente != null)
            {
                MostrarInfo(agente);
            }
        }
Beispiel #2
0
        static Agente Actualizar()
        {
            Agente agente = new Agente();


            Console.WriteLine("Ingrese el id del agente");
            int id = Convert.ToInt32(Console.ReadLine());

            agente = repository.GetbyId(id);

            Console.WriteLine("Nombre: ");
            agente.Nombre = Console.ReadLine();
            Console.WriteLine("Apellido: ");
            agente.Apellido = Console.ReadLine();
            Console.WriteLine("Telefono: ");
            agente.NumeroTelefono = Console.ReadLine();
            Console.WriteLine("Salario: ");
            agente.Salario = Convert.ToDecimal(Console.ReadLine());

            return(agente);
        }