Example #1
0
 public Repartidor(int id, string nombre, string apellido, bool sexo, DateTime fechaNacimiento, string numeroTelefono, string numeroCelular, string correoElectronico, string correoElectronicoAlternativo, string tipoDocumento, string numeroDocumento, DateTime fechaIngreso, string direccion, Localidad localidad, Zona zona, bool activo)
 {
     this.Id                           = id;
     this.Nombre                       = nombre;
     this.Apellido                     = apellido;
     this.Sexo                         = sexo;
     this.FechaNacimiento              = fechaNacimiento;
     this.NumeroTelefono               = numeroTelefono;
     this.NumeroCelular                = numeroCelular;
     this.CorreoElectronico            = correoElectronico;
     this.CorreoElectronicoAlternativo = correoElectronicoAlternativo;
     this.TipoDocumento                = tipoDocumento;
     this.NumeroDocumento              = numeroDocumento;
     this.FechaIngreso                 = fechaIngreso;
     this.Direccion                    = direccion;
     this.Localidad                    = localidad;
     this.zona                         = zona;
     this.Activo                       = activo;
 }
Example #2
0
 public Cliente(int id, string nombre, string nombreDeContacto, string cuit, string numeroTelefono, string numeroCelular, string correoElectronico, DateTime fechaInicio, string direccion, Zona zona, bool activo)
 {
     this.id                = id;
     this.nombre            = nombre;
     this.nombreDeContacto  = nombreDeContacto;
     this.cuit              = cuit;
     this.numeroTelefono    = numeroTelefono;
     this.numeroCelular     = numeroCelular;
     this.correoElectronico = correoElectronico;
     this.fechaInicio       = fechaInicio;
     this.direccion         = direccion;
     this.zona              = zona;
     this.activo            = activo;
 }