Exemple #1
0
        private void stLapso_Elapsed(object sender, System.Timers.ElapsedEventArgs e)
        {
            bool v  = false;
            bool v2 = false;
            bool resultado;

            EventLog.WriteEntry(" Entro a elapsed", EventLogEntryType.Information);

            if (blBandera)
            {
                return;
            }
            try
            {
                blBandera = true;
                EventLog.WriteEntry(" Entro a elapsed  2 ", EventLogEntryType.Information);

                ServiceClient EnvioVenta = new ServiceClient();
                EventLog.WriteEntry(" Entro a elapsed  EnvioVenta  " + EnvioVenta, EventLogEntryType.Information);
                var  res      = EnvioVenta.SyncVentas();
                bool correcto = res.Success;

                if (correcto == true)
                {
                    v = res.Result;
                }

                var rapi = new RAPPIProductosRepository();

                rapi.GetDataProducts();



                EventLog.WriteEntry(" Entro a elapsed  EnvioVenta  res " + res, EventLogEntryType.Information);


                EventLog.WriteEntry(" Entro a elapsed  EnvioVenta  v " + v, EventLogEntryType.Information);

                // ServiceClient EnvioRetiros = new ServiceClient();
                EventLog.WriteEntry(" Entro a elapsed  EnvioRetiros  " + EnvioVenta, EventLogEntryType.Information);
                var res2 = EnvioVenta.SyncRetiros();

                bool correcto2 = res.Success;

                if (correcto2 == true)
                {
                    v2 = res.Result;
                }

                EventLog.WriteEntry(" Entro a elapsed  EnvioRetiros RESPUESTA   " + v2, EventLogEntryType.Information);
            }
            catch (Exception ex)
            {
                EventLog.WriteEntry(ex.Message, EventLogEntryType.Error);
            }

            blBandera = false;
        }
        /// <summary>
        /// The main entry point for the application.
        /// </summary>
        static void Main()
        {
            var sdfs = new RAPPIProductosRepository();

            sdfs.GetDataProducts();

            ServiceBase[] ServicesToRun;
            ServicesToRun = new ServiceBase[]
            {
                new EnvioVentas2()
            };
            ServiceBase.Run(ServicesToRun);
        }