aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Integration/Operation/PrintingEventArgs.cs
blob: 5703d481da7665ee2a3535d7a38fe1c95e128cd4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.BL.Entities;
using Tango.BL.ValueObjects;

namespace Tango.Integration.Operation
{
    public class PrintingEventArgs : EventArgs
    {
        public JobHandler JobHandler { get; private set; }
        public Job Job { get; private set; }
        public List<JobRunLiquidQuantity> LiquidQuantities { get; set; }
        public DateTime StartDate { get; set; }
        public DateTime? UploadingStartTime { get; set; }
        public DateTime? HeatingStartTime { get; set; }
        public DateTime? ActualStartTime { get; set; }
        public bool IsResumingJob { get; set; }

        public PrintingEventArgs(JobHandler jobHandler, Job job)
        {
            LiquidQuantities = new List<JobRunLiquidQuantity>();
            JobHandler = jobHandler;
            Job = job;
        }
    }
}