public LuxotticaRxoService(ILogger <LuxotticaRxoService> logger,
                                   IRxoRepository rxoRepository)
        {
            this.logger        = logger;
            this.rxoRepository = rxoRepository;

            // Configure settings for Luxottica Rxo WS, temporary, move this code outside...

            configRxoWs = new RxoWSConfigData();

            configRxoWs.Address           = "https://certi-my.luxottica.com:443/Stores-WS/RXOServiceImplService";
            configRxoWs.BasicAuth         = true;
            configRxoWs.BasicAuthUsername = "******";
            configRxoWs.BasicAuthPassword = "******";

            configRxoWs.ORIGIN_NAME = "BLUDATA";
        }
Ejemplo n.º 2
0
 public LuxotticaRxoAuditService(ILogger <LuxotticaRxoAuditService> logger,
                                 IRxoRepository rxoRepository)
 {
     this.logger        = logger;
     this.rxoRepository = rxoRepository;
 }