blob: fe8a573a535b6be281c5d183f0f9be0f5787afb5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.BL.Entities;
namespace Tango.Integration.Operation
{
public class PrintingEventArgs : EventArgs
{
public JobHandler JobHandler { get; private set; }
public Job Job { get; private set; }
public PrintingEventArgs(JobHandler jobHandler, Job job)
{
JobHandler = jobHandler;
Job = job;
}
}
}
|