Exemplo n.º 1
0
 public override void Init()
 {
     base.Init();
       _saveService = App.GetService<IBackgroundSaveService>();
       _saveService.RegisterObjectHandler(typeof(OperationLogEntry), this);
       _saveService.RegisterObjectHandler(typeof(SystemLogEntry), new SystemLogEntrySaveHandler());
       //Registering handler for LogEntry would cover all derived classes
 }
Exemplo n.º 2
0
 public override void Init()
 {
     base.Init();
       _saveService = App.GetService<IBackgroundSaveService>();
       _saveService.RegisterObjectHandler(typeof(TransactionLogEntry), this);
       SetupUpdateLogging();
 }
Exemplo n.º 3
0
 public override void Init()
 {
     base.Init();
       _backgroundSave = App.GetService<IBackgroundSaveService>();
       _backgroundSave.RegisterObjectHandler(typeof(LoginLogEntry), this);
 }
Exemplo n.º 4
0
 public override void Init()
 {
     base.Init();
     _backgroundSave = App.GetService <IBackgroundSaveService>();
     _backgroundSave.RegisterObjectHandler(typeof(LoginLogEntry), this);
 }
Exemplo n.º 5
0
 public override void Init()
 {
     base.Init();
     _backgroundSaveService = App.GetService <IBackgroundSaveService>();
     _backgroundSaveService.RegisterObjectHandler(typeof(WebCallContext), this);
 }
Exemplo n.º 6
0
 public override void Init()
 {
     base.Init();
       _backgroundSaveService = App.GetService<IBackgroundSaveService>();
       _backgroundSaveService.RegisterObjectHandler(typeof(WebCallContext), this);
 }