//public string List() //{ // string todos = ""; // foreach (Vendedor vendedor in ListaVendedor) // { // todos += vendedor.ToString(); // } // return todos; //} /// <summary> /// Muestra los datos de un vendedor /// </summary> public void Show() { Console.WriteLine(Cedula.ToString().PadRight(12) + Nombre.PadRight(35) + FechaNacimiento.ToShortDateString().PadLeft(12) + Sexo.ToString().PadRight(12).PadLeft(15) + Telefono.ToString().PadLeft(12).PadRight(15) + Correo.PadRight(40) + Direccion.PadRight(40) + EstadoCivil.ToString().PadRight(12) + IdVendedor.ToString().PadLeft(5) + FechaIngreso.ToShortDateString().PadLeft(12) + Salario.ToString().PadLeft(10) + Profesion.PadLeft(20).PadRight(17) + Calificacion.ToString().PadLeft(5)); }
public override string ToString() { return(IdVendedor.ToString() + "\t" + Cedula.ToString() + "\t" + Nombre + "\t" + FechaNacimiento.ToShortDateString() + "\t" + Sexo.ToString() + "\t" + Telefono.ToString() + "\t" + Correo + "\t" + Direccion + "\t" + EstadoCivil.ToString() + "\t" + FechaIngreso.ToShortDateString() + "\t" + Salario.ToString() + "\t" + Profesion + "\t" + Calificacion.ToString()); }
private void Save() { System.IO.StreamWriter writer = new System.IO.StreamWriter("Files/Cliente.txt", true); writer.WriteLine(Cedula.ToString() + "," + Nombre + "," + FechaNacimiento.ToShortDateString() + "," + Sexo.ToString() + "," + Telefono.ToString() + "," + Correo + "," + Direccion + "," + EstadoCivil.ToString() + "," + IdCliente.ToString()); writer.Close(); }
private void Save() { System.IO.StreamWriter writer = new System.IO.StreamWriter("Files/Vendedor.txt", true); writer.WriteLine(Cedula.ToString() + "," + Nombre + "," + FechaNacimiento.ToShortDateString() + "," + Sexo.ToString() + "," + Telefono.ToString() + "," + Correo + "," + Direccion + "," + EstadoCivil.ToString() + "," + IdVendedor.ToString() + "," + FechaIngreso.ToShortDateString() + "," + Salario.ToString() + "," + Profesion + "," + Calificacion.ToString()); writer.Close(); }
public override string ToString() { return(Cedula.ToString() + "\t" + Nombre + "\t" + FechaNacimiento.ToShortDateString() + "\t" + Sexo.ToString() + "\t" + Telefono.ToString() + "\t" + Correo + "\t" + Direccion + "\t" + EstadoCivil.ToString() + "\t" + IdCliente.ToString()); }
//public string List() //{ // string todos = ""; // foreach (Cliente Cliente in ListaClientes) // { // todos += Cliente.ToString(); // } // return todos; //} /// <summary> /// Muestra los datos de un Cliente /// </summary> public void Show() { Console.WriteLine(Cedula.ToString().PadRight(12) + Nombre.PadRight(35) + FechaNacimiento.ToShortDateString().PadLeft(12) + Sexo.ToString().PadRight(12).PadLeft(15) + Telefono.ToString().PadLeft(12).PadRight(15) + Correo.PadRight(40) + Direccion.PadRight(40) + EstadoCivil.ToString().PadRight(12) + IdCliente.ToString().PadLeft(5)); }
public override string ToString() { return(" \n Cedula: " + Cedula.ToString() + " \n Nombre: " + Nombre); }