When enqueuing a background job it’s possible to do so by writing for instance:
BackgroundJob.Enqueue<IEmailSender>(x => x.Send(13, "Hello!"));
…and this will be resolved on the HangfireServer side to the instance registered with the IoC container.
But this doesn’t seem to be possible with RecurringJob.AddOrUpdate(…), or am I missing something?