Files
LeafWeb/Web/Services/SetComplete.cs
T

16 lines
375 B
C#

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();
}
}
}