28 lines
681 B
C#
28 lines
681 B
C#
using PDFGenerator.BusinessLayer;
|
|
using PipelineLib;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace GestorePDF.Logic
|
|
{
|
|
public class Worker : Task
|
|
{
|
|
DataThread _dataThread = null;
|
|
|
|
public Worker(DataThread dataThread)
|
|
{
|
|
_dataThread = dataThread;
|
|
this.taskData = new PipelineContext(dataThread.Rete + "_" + dataThread.CodiceFiscale, this);
|
|
}
|
|
|
|
public override object Elaborate(Dictionary<String, Object> input)
|
|
{
|
|
//GestoreThread gt = new GestoreThread(_dataThread);
|
|
//gt.StartWork();
|
|
return null;
|
|
}
|
|
}
|
|
}
|