Exemplo n.º 1
0
 public Tramitador()
 {
     this.codigo       = -1;
     this.nit          = null;
     this.tipo         = null;
     this.fechaIngreso = new DateTime();
     this.fechaRetiro  = new DateTime();
 }
Exemplo n.º 2
0
 public Tramitador(Tramitador tramitador)
 {
     this.codigo       = tramitador.codigo;
     this.nit          = tramitador.nit;
     this.tipo         = tramitador.tipo;
     this.fechaIngreso = tramitador.fechaIngreso;
     this.fechaRetiro  = tramitador.fechaRetiro;
 }
Exemplo n.º 3
0
 public OrdenTramite()
 {
     this.prefijo      = null;
     this.numero       = -1;
     this.estado       = null;
     this.vehiculo     = null;
     this.nit          = null;
     this.contacto     = null;
     this.costo        = -1;
     this.iva          = -1;
     this.creacion     = new DateTime();
     this.finalizacion = new DateTime();
 }
Exemplo n.º 4
0
 public OrdenTramite(OrdenTramite ordenTramite)
 {
     this.prefijo      = ordenTramite.prefijo;
     this.numero       = ordenTramite.numero;
     this.estado       = ordenTramite.estado;
     this.vehiculo     = ordenTramite.vehiculo;
     this.nit          = ordenTramite.nit;
     this.contacto     = ordenTramite.contacto;
     this.costo        = ordenTramite.costo;
     this.iva          = ordenTramite.iva;
     this.creacion     = ordenTramite.creacion;
     this.finalizacion = ordenTramite.finalizacion;
 }
Exemplo n.º 5
0
 public Tramitador(
     int codigo,
     Nit nit,
     TipoTramitador tipo,
     DateTime fechaIngreso,
     DateTime fechaRetiro
     )
 {
     this.codigo       = codigo;
     this.nit          = nit;
     this.tipo         = tipo;
     this.fechaIngreso = fechaIngreso;
     this.fechaRetiro  = fechaRetiro;
 }
Exemplo n.º 6
0
 public CatalogoVehiculo(
     ParametrosCatalogoVehiculo codigo,
     string vin,
     string placa,
     string motor,
     Nit nit,
     string serie,
     string chasis,
     ParametrosColor color,
     int anoModelo,
     TipoServicioVehiculo servicio,
     DateTime vencimientoSeguro,
     string concecionarioVendedor,
     DateTime fechaVenta,
     float kilometrajeventa,
     string numRadio,
     float kilometraje,
     float kilometrajePromedio,
     char categoria,
     string clave,
     DateTime fechaUltimoKm
     )
 {
     this.codigo                = codigo;
     this.vin                   = vin;
     this.placa                 = placa;
     this.motor                 = motor;
     this.nit                   = nit;
     this.serie                 = serie;
     this.chasis                = chasis;
     this.color                 = color;
     this.anoModelo             = anoModelo;
     this.servicio              = servicio;
     this.vencimientoSeguro     = vencimientoSeguro;
     this.concecionarioVendedor = concecionarioVendedor;
     this.fechaVenta            = fechaVenta;
     this.kilometrajeventa      = kilometrajeventa;
     this.numRadio              = numRadio;
     this.kilometraje           = kilometraje;
     this.kilometrajePromedio   = kilometrajePromedio;
     this.categoria             = categoria;
     this.clave                 = clave;
     this.fechaUltimoKm         = fechaUltimoKm;
 }
Exemplo n.º 7
0
 public CatalogoVehiculo(CatalogoVehiculo catalogoVehiculo)
 {
     this.codigo                = catalogoVehiculo.codigo;
     this.vin                   = catalogoVehiculo.vin;
     this.placa                 = catalogoVehiculo.placa;
     this.motor                 = catalogoVehiculo.motor;
     this.nit                   = catalogoVehiculo.nit;
     this.serie                 = catalogoVehiculo.serie;
     this.chasis                = catalogoVehiculo.chasis;
     this.color                 = catalogoVehiculo.color;
     this.anoModelo             = catalogoVehiculo.anoModelo;
     this.servicio              = catalogoVehiculo.servicio;
     this.vencimientoSeguro     = catalogoVehiculo.vencimientoSeguro;
     this.concecionarioVendedor = catalogoVehiculo.concecionarioVendedor;
     this.fechaVenta            = catalogoVehiculo.fechaVenta;
     this.kilometrajeventa      = catalogoVehiculo.kilometrajeventa;
     this.numRadio              = catalogoVehiculo.numRadio;
     this.kilometraje           = catalogoVehiculo.kilometraje;
     this.kilometrajePromedio   = catalogoVehiculo.kilometrajePromedio;
     this.categoria             = catalogoVehiculo.categoria;
     this.clave                 = catalogoVehiculo.clave;
     this.fechaUltimoKm         = catalogoVehiculo.fechaUltimoKm;
 }
Exemplo n.º 8
0
 public CatalogoVehiculo()
 {
     this.codigo                = null;
     this.vin                   = null;
     this.placa                 = null;
     this.motor                 = null;
     this.nit                   = null;
     this.serie                 = null;
     this.chasis                = null;
     this.color                 = null;
     this.anoModelo             = -1;
     this.servicio              = null;
     this.vencimientoSeguro     = new DateTime();
     this.concecionarioVendedor = null;
     this.fechaVenta            = new DateTime();
     this.kilometrajeventa      = -1;
     this.numRadio              = null;
     this.kilometraje           = -1;
     this.kilometrajePromedio   = -1;
     this.categoria             = ' ';
     this.clave                 = null;
     this.fechaUltimoKm         = new DateTime();
 }
Exemplo n.º 9
0
 public OrdenTramite(
     Documento prefijo,
     int numero,
     EstadoOrden estado,
     CatalogoVehiculo vehiculo,
     Nit nit,
     string contacto,
     float costo,
     float iva,
     DateTime creacion,
     DateTime finalizacion
     )
 {
     this.prefijo      = prefijo;
     this.numero       = numero;
     this.estado       = estado;
     this.vehiculo     = vehiculo;
     this.nit          = nit;
     this.contacto     = contacto;
     this.costo        = costo;
     this.iva          = iva;
     this.creacion     = creacion;
     this.finalizacion = finalizacion;
 }