blob: f5876e16285860b08a0356c3969d21f93b1e65ac (
plain)
| ofs | hex dump | ascii |
|---|
| 0000 | 21 3c 61 72 63 68 3e 0a 2f 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 31 34 38 35 30 32 34 30 | !<arch>./...............14850240 |
| 0020 | 35 36 20 20 20 20 20 20 20 20 20 20 20 20 20 20 30 20 20 20 20 20 20 20 31 38 34 39 30 38 20 20 | 56..............0.......184908.. |
| 0040 | 20 20 60 0a 00 00 15 3a 00 05 b8 8e 00 05 b8 8e 00 05 b8 8e 00 05 b8 8e 00 05 b8 8e 00 05 b8 8e | ..`....:........................ |
| 0060 | 00 05 b8 8e 00 05 b8 8e 00 05 b8 8e 00 05 b8 8e 00 05 d2 38 00 05 d2 38 00 05 d2 38 00 05 d2 38 | ...................8...8...8...8 |
00using 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 IsResumed { get; set; }
public PrintingEventArgs(JobHandler jobHandler, Job job)
{
LiquidQuantities = new List<JobRunLiquidQuantity>();
JobHandler = jobHandler;
Job = job;
}
}
}
|