Ejemplo n.º 1
0
        public JobService(IScheduler scheduler, IJobTypeStore store)
        {
            Ensure.That(() => scheduler).IsNotNull();
            Ensure.That(() => store).IsNotNull();

            this.store = store;
            this.scheduler = scheduler;
        }
Ejemplo n.º 2
0
 public JobService(IScheduler scheduler, IJobTypeStore store)
 {
     if (scheduler == null)
     {
         throw new ArgumentNullException("scheduler");
     }
     if (store == null)
     {
         throw new ArgumentNullException("store");
     }
     this.store     = store;
     this.scheduler = scheduler;
 }
Ejemplo n.º 3
0
 public JobService(IScheduler scheduler, IJobTypeStore store)
 {
     if (scheduler == null)
     {
         throw new ArgumentNullException("scheduler");
     }
     if (store == null)
     {
         throw new ArgumentNullException("store");
     }
     this.store = store;
     this.scheduler = scheduler;
 }