You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
436 B

8 months ago
  1. using JMETxnPushScheduler.Business;
  2. using System;
  3. namespace SendMail
  4. {
  5. class Program
  6. {
  7. static void Main(string[] args)
  8. {
  9. Console.WriteLine("Scheduler started on: " + DateTime.Now);
  10. TxnPush _txnPush = new TxnPush();
  11. _txnPush.TxnSyncMain();
  12. _txnPush.TxnReleaseMain();
  13. Console.WriteLine("Scheduler started on: " + DateTime.Now);
  14. }
  15. }
  16. }