BackgroundJobConfiguration.cs 499 B

123456789101112131415161718
  1. using Abp.Configuration.Startup;
  2. namespace Abp.BackgroundJobs
  3. {
  4. internal class BackgroundJobConfiguration : IBackgroundJobConfiguration
  5. {
  6. public bool IsJobExecutionEnabled { get; set; }
  7. public IAbpStartupConfiguration AbpConfiguration { get; private set; }
  8. public BackgroundJobConfiguration(IAbpStartupConfiguration abpConfiguration)
  9. {
  10. AbpConfiguration = abpConfiguration;
  11. IsJobExecutionEnabled = true;
  12. }
  13. }
  14. }