Exemplo n.º 1
0
        public override void Execute(CommandContext context)
        {
            var start = DateTime.Today;
            var end   = DateTime.Today + TimeSpan.FromDays(1);

            PipelineHelper.RunPipeline(start, end); // run the pipeline
            EventRaiser.RaiseEvent(start, end);
        }
Exemplo n.º 2
0
        protected virtual void SendEventRemote(object sender, EventArgs args)
        {
            var sendFilesEventRemote = CreateSendFilesEventRemote(args);

            PipelineHelper.RunPipeline(sendFilesEventRemote.Start, sendFilesEventRemote.End);
        }