aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Integration/Operation/ResumingJobEventArgs.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio/Tango.Integration/Operation/ResumingJobEventArgs.cs')
-rw-r--r--Software/Visual_Studio/Tango.Integration/Operation/ResumingJobEventArgs.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/Software/Visual_Studio/Tango.Integration/Operation/ResumingJobEventArgs.cs b/Software/Visual_Studio/Tango.Integration/Operation/ResumingJobEventArgs.cs
index 55728f799..6a8546350 100644
--- a/Software/Visual_Studio/Tango.Integration/Operation/ResumingJobEventArgs.cs
+++ b/Software/Visual_Studio/Tango.Integration/Operation/ResumingJobEventArgs.cs
@@ -9,18 +9,18 @@ namespace Tango.Integration.Operation
{
public class ResumingJobEventArgs : EventArgs
{
- private Func<JobHandler> _approveAction;
+ private Func<Job,JobHandler> _approveAction;
public String JobGuid { get; set; }
- public ResumingJobEventArgs(Func<JobHandler> approveAction)
+ public ResumingJobEventArgs(Func<Job, JobHandler> approveAction)
{
_approveAction = approveAction;
}
- public JobHandler Approve()
+ public JobHandler Approve(Job job)
{
- return _approveAction();
+ return _approveAction(job);
}
}
}