Exemple #1
0
 public EntityEmpresaPaginacion(
     Keys.KeyEmpresa okey,
     String oCodigoEmpresa,
     String oRazonComercial,
     String oRazonSocial,
     String oRuc,
     String oTelefono,
     String oContacto,
     String oDireccion,
     Int32 oIdTipoEmpresa,
     Int32 oEstado,
     String oEstadoNombre,
     String oTipoEmpresaNombre,
     EntityPaginacion oEntityPaginacion)
     : base(okey,
            oCodigoEmpresa,
            oRazonComercial,
            oRazonSocial,
            oRuc,
            oTelefono,
            oContacto,
            oDireccion,
            oIdTipoEmpresa,
            oEstado)
 {
     this.entityPaginacion  = oEntityPaginacion;
     this.estadoNombre      = oEstadoNombre;
     this.tipoEmpresaNombre = oTipoEmpresaNombre;
 }
Exemple #2
0
 public EntityEmpresa(
     Keys.KeyEmpresa okey,
     String oCodigoEmpresa,
     String oRazonComercial,
     String oRazonSocial,
     String oRuc,
     String oTelefono,
     String oContacto,
     String oDireccion,
     Int32 oIdTipoEmpresa,
     Int32 oEstado)
 {
     this.key            = okey;
     this.codigoEmpresa  = oCodigoEmpresa;
     this.razonComercial = oRazonComercial;
     this.razonSocial    = oRazonSocial;
     this.ruc            = oRuc;
     this.telefono       = oTelefono;
     this.direccion      = oDireccion;
     this.idTipoEmpresa  = oIdTipoEmpresa;
     this.estado         = oEstado;
 }