diff options
| author | Roy <Roy.mail.net@gmail.com> | 2022-11-03 09:16:24 +0200 |
|---|---|---|
| committer | Roy <Roy.mail.net@gmail.com> | 2022-11-03 09:16:24 +0200 |
| commit | bcfaaf57b60a63acacf0651f5a69b45304abc132 (patch) | |
| tree | a8f7166e9b522af1af019c636825659ae1a84c44 /Software/Visual_Studio/Tango.BL | |
| parent | b93d7795c84da2e5317fd12d9a41cdd63fcb6659 (diff) | |
| download | Tango-bcfaaf57b60a63acacf0651f5a69b45304abc132.tar.gz Tango-bcfaaf57b60a63acacf0651f5a69b45304abc132.zip | |
FSE Statistics module starter.
Diffstat (limited to 'Software/Visual_Studio/Tango.BL')
| -rw-r--r-- | Software/Visual_Studio/Tango.BL/Entities/JobRun.cs | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/Software/Visual_Studio/Tango.BL/Entities/JobRun.cs b/Software/Visual_Studio/Tango.BL/Entities/JobRun.cs index 1750b835d..2ab10f14d 100644 --- a/Software/Visual_Studio/Tango.BL/Entities/JobRun.cs +++ b/Software/Visual_Studio/Tango.BL/Entities/JobRun.cs @@ -143,24 +143,24 @@ namespace Tango.BL.Entities } } - + public TimeSpan TotalDyeingTime { get - { - if( this.ActualStartDate == null || this.EndDate == default(DateTime) || this.EndDate < this.ActualStartDate) - return TimeSpan.Zero; + { + if (this.ActualStartDate == null || this.EndDate == default(DateTime) || this.EndDate < this.ActualStartDate) + return TimeSpan.Zero; return EndDate - (DateTime)ActualStartDate; } - + } - /// <summary> - /// Initializes a new instance of the <see cref="JobRun" /> class. - /// </summary> - public JobRun() : base() + /// <summary> + /// Initializes a new instance of the <see cref="JobRun" /> class. + /// </summary> + public JobRun() : base() { } |
