Exemple #1
0
        public AppCtx()
        {
            Setting        = new Setting();
            SettingManager = new SettingManager(this);

            MailJobCtx        = new MailJobCtx(this);
            MailJobManager    = new MailJobManager(MailJobCtx);
            MailJobDispatcher = new MailJobDispatcher(MailJobCtx);
        }
 public MailJobDispatcher(MailJobCtx ctx)
 {
     _ctx = ctx;
 }
 public MailJobManager(MailJobCtx ctx)
 {
     _ctx = ctx;
 }