Esempio n. 1
0
        public AppCtx()
        {
            Setting        = new Setting();
            SettingManager = new SettingManager(this);

            MailJobCtx        = new MailJobCtx(this);
            MailJobManager    = new MailJobManager(MailJobCtx);
            MailJobDispatcher = new MailJobDispatcher(MailJobCtx);
        }
Esempio n. 2
0
 public MailJobDispatcher(MailJobCtx ctx)
 {
     _ctx = ctx;
 }
Esempio n. 3
0
 public MailJobManager(MailJobCtx ctx)
 {
     _ctx = ctx;
 }