Exemplo n.º 1
0
        public BrokerPestanaDto GetBroker(CabeceraJsonDto cabeceraDto)
        {
            BrokerPestanaDto brokerPestana = new BrokerPestanaDto();

            brokerPestana.Cabecera    = cabeceraDto;
            brokerPestana.Parametrica = this.GetParametricasBroker();
            brokerPestana.DatosCarga  = this.GetPestanaCobranza(cabeceraDto);
            return(brokerPestana);
        }
Exemplo n.º 2
0
        public Boolean SetGuardarPestanaCobranza(BrokerPestanaDto datosBroker)
        {
            int     grupoFormulario = datosBroker.Cabecera.IdGrupoFormulario;
            Boolean guardar         = this.SetGuardarCorredor(datosBroker);

            if (guardar)
            {
                guardar = this.SetGuardarCcte(datosBroker, grupoFormulario);
            }
            return(guardar);
        }
Exemplo n.º 3
0
 public Boolean SetGuardarCcte(BrokerPestanaDto datosBroker, int grupoFormulario)
 {
     return(this.clientBroker.SetBrokerCcte(MapperBroker.TransformarCcteDTOEnDtoMapper(datosBroker.DatosCarga, grupoFormulario)));
 }
Exemplo n.º 4
0
 public Boolean SetGuardarCorredor(BrokerPestanaDto datosBroker)
 {
     ;
     return(this.clientBroker.SetBrokerCorredor(MapperBroker.TransformarCorredorDTOEnDtoMapper(datosBroker.DatosCarga)));
 }