using Quartz; using System.Threading.Tasks; namespace WebApp.Jobs.Outlook { public class RunSynJob : IJob { /// /// Called by the when a fires that is /// associated with the . /// /// todo: describe context parameter on Execute public virtual async Task Execute(IJobExecutionContext context) => await TaskUtil.CompletedTask; } }