diff options
Diffstat (limited to 'Software/Visual_Studio/Tango.BL/DTO/JobRunDTOBase.cs')
| -rw-r--r-- | Software/Visual_Studio/Tango.BL/DTO/JobRunDTOBase.cs | 189 |
1 files changed, 5 insertions, 184 deletions
diff --git a/Software/Visual_Studio/Tango.BL/DTO/JobRunDTOBase.cs b/Software/Visual_Studio/Tango.BL/DTO/JobRunDTOBase.cs index 789aacbb2..112694e1a 100644 --- a/Software/Visual_Studio/Tango.BL/DTO/JobRunDTOBase.cs +++ b/Software/Visual_Studio/Tango.BL/DTO/JobRunDTOBase.cs @@ -18,18 +18,15 @@ using Tango.BL.Entities; namespace Tango.BL.DTO { + + /// <summary> + /// + /// </summary> + public abstract class JobRunDTOBase : ObservableEntityDTO<JobRunDTO, JobRun> { /// <summary> - /// machine guid - /// </summary> - public String MachineGuid - { - get; set; - } - - /// <summary> /// job guid /// </summary> public String JobGuid @@ -38,54 +35,6 @@ namespace Tango.BL.DTO } /// <summary> - /// rml guid - /// </summary> - public String RmlGuid - { - get; set; - } - - /// <summary> - /// user guid - /// </summary> - public String UserGuid - { - get; set; - } - - /// <summary> - /// job name - /// </summary> - public String JobName - { - get; set; - } - - /// <summary> - /// job designation - /// </summary> - public Int32 JobDesignation - { - get; set; - } - - /// <summary> - /// job source - /// </summary> - public Int32 JobSource - { - get; set; - } - - /// <summary> - /// job string - /// </summary> - public String JobString - { - get; set; - } - - /// <summary> /// start date /// </summary> public DateTime StartDate @@ -94,30 +43,6 @@ namespace Tango.BL.DTO } /// <summary> - /// uploading start date - /// </summary> - public Nullable<DateTime> UploadingStartDate - { - get; set; - } - - /// <summary> - /// heating start date - /// </summary> - public Nullable<DateTime> HeatingStartDate - { - get; set; - } - - /// <summary> - /// actual start date - /// </summary> - public Nullable<DateTime> ActualStartDate - { - get; set; - } - - /// <summary> /// end date /// </summary> public DateTime EndDate @@ -134,94 +59,6 @@ namespace Tango.BL.DTO } /// <summary> - /// job length - /// </summary> - public Double JobLength - { - get; set; - } - - /// <summary> - /// is gradient - /// </summary> - public Boolean IsGradient - { - get; set; - } - - /// <summary> - /// gradient resolution cm - /// </summary> - public Int32 GradientResolutionCm - { - get; set; - } - - /// <summary> - /// liquid quantity string - /// </summary> - public String LiquidQuantityString - { - get; set; - } - - /// <summary> - /// cyan quantity - /// </summary> - public Int32 CyanQuantity - { - get; set; - } - - /// <summary> - /// magenta quantity - /// </summary> - public Int32 MagentaQuantity - { - get; set; - } - - /// <summary> - /// yellow quantity - /// </summary> - public Int32 YellowQuantity - { - get; set; - } - - /// <summary> - /// black quantity - /// </summary> - public Int32 BlackQuantity - { - get; set; - } - - /// <summary> - /// transparent quantity - /// </summary> - public Int32 TransparentQuantity - { - get; set; - } - - /// <summary> - /// lubricant quantity - /// </summary> - public Int32 LubricantQuantity - { - get; set; - } - - /// <summary> - /// cleaner quantity - /// </summary> - public Int32 CleanerQuantity - { - get; set; - } - - /// <summary> /// end position /// </summary> public Double EndPosition @@ -237,21 +74,5 @@ namespace Tango.BL.DTO get; set; } - /// <summary> - /// is head cleaning - /// </summary> - public Boolean IsHeadCleaning - { - get; set; - } - - /// <summary> - /// is synchronized - /// </summary> - public Boolean IsSynchronized - { - get; set; - } - } } |
