using LeafWeb.Core.Entities; namespace LeafWeb.Web.Services { public class SetComplete : PiscalQueueWorker { protected override void DoWorkInternal(LeafInput leafInput) { Logger.Trace("LeafInput: {0}, Set Complete", leafInput.Id); DataService.SetLeafInputStatus(leafInput, LeafInputStatusType.Complete); HangfireStartup.TriggerPiscalProcessQueue(); } } }