コード例 #1
0
        public void Execute(IJobExecutionContext context)
        {
            var m = new Meracord.ACH.PaymentBatchManager.InternalMessages.StartACHPaymentBatch() {
                ACHDebitCutoffDate = DateTime.Today.AddDays(1),
                DebitsPerBatchStartedCount = 1000,
                PaymentBatchGUID = Guid.NewGuid(),
                RequestedBy = "scheduling_service",
                RequestedDate = DateTime.UtcNow,
                SessionID = 1,
            };

            _bus.Send(m);
        }
コード例 #2
0
        public void Execute(IJobExecutionContext context)
        {
            var m = new Meracord.ACH.PaymentBatchManager.InternalMessages.StartACHPaymentBatch()
            {
                ACHDebitCutoffDate         = DateTime.Today.AddDays(1),
                DebitsPerBatchStartedCount = 1000,
                PaymentBatchGUID           = Guid.NewGuid(),
                RequestedBy   = "scheduling_service",
                RequestedDate = DateTime.UtcNow,
                SessionID     = 1,
            };

            _bus.Send(m);
        }