示例#1
0
 LineQueueItem(int batchId, LineQueueStatus status, DateTime startTime, int length)
 {
     this.BatchId   = batchId;
     this.Status    = status;
     this.StartTime = startTime;
     this.Length    = length;
 }
示例#2
0
 LineQueueItem(int id, int batchId, LineQueueStatus status, DateTime startTime)
 {
     this.Id        = id;
     this.BatchId   = batchId;
     this.Status    = status;
     this.StartTime = startTime;
 }
示例#3
0
 LineQueueItem(int batchId, LineQueueStatus status)
 {
     this.BatchId = batchId;
     this.Status  = status;
 }