Code rearrange for services and charting

This commit is contained in:
2016-04-27 09:52:41 -04:00
parent 8c218cda48
commit 9730600164
11 changed files with 20 additions and 19 deletions
+16
View File
@@ -0,0 +1,16 @@
using LeafWeb.Core.Entities;
namespace LeafWeb.Web.Services.PiscalQueue
{
public class StartPending : PiscalQueueWorker
{
protected override void DoWorkInternal(LeafInput leafInput)
{
Logger.Trace("LeafInput: {0}, Run", leafInput.Id);
PiscalService.Run(leafInput);
DataService.SetLeafInputStatus(leafInput, LeafInputStatusType.Running);
}
}
}