コード例 #1
0
 public Zona(int idZona, string nombre, Localidad localidad, bool activo)
 {
     this.idZona    = idZona;
     this.nombre    = nombre;
     this.localidad = localidad;
     this.activo    = activo;
 }
コード例 #2
0
 public Proveedor(int id, string nombre, string nombreDeContacto, string cuit, string numeroTelefono, string numeroCelular, string correoElectronico, DateTime fechaInicio, string direccion, Localidad localidad, 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.localidad         = localidad;
     this.activo            = activo;
 }
コード例 #3
0
 public Persona(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, 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.activo                       = activo;
 }
コード例 #4
0
ファイル: Usuario.cs プロジェクト: elloux/FabricaCEAPE
 public Usuario(int id, string nombre, string apellido, bool tipoUsuario, bool sexo, DateTime fechaNacimiento, string numeroTelefono, string numeroCelular, string correoElectronico, string correoElectronicoAlternativo, string tipoDocumento, string numeroDocumento, DateTime fechaIngreso, string direccion, Localidad localidad, Departamento departamento, Login login, bool activo)
 {
     this.Id                           = id;
     this.Nombre                       = nombre;
     this.Apellido                     = apellido;
     this.tipoUsuario                  = tipoUsuario;
     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.Departamento                 = departamento;
     this.Login                        = login;
     this.Activo                       = activo;
 }
コード例 #5
0
ファイル: Repartidor.cs プロジェクト: elloux/FabricaCEAPE
 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;
 }