weighted-shortest-job-first-fibonacci as decimal
This commit is contained in:
@ -37,7 +37,8 @@ internal class WorkItem
|
||||
long? timeCriticality,
|
||||
string title,
|
||||
string? violation,
|
||||
long? weightedShortestJobFirst,
|
||||
decimal? weightedShortestJobFirst,
|
||||
decimal? weightedShortestJobFirstFibonacci,
|
||||
string workItemType)
|
||||
{
|
||||
ActivatedDate = activatedDate;
|
||||
@ -69,6 +70,7 @@ internal class WorkItem
|
||||
Title = title;
|
||||
Violation = violation;
|
||||
WeightedShortestJobFirst = weightedShortestJobFirst;
|
||||
WeightedShortestJobFirstFibonacci = weightedShortestJobFirstFibonacci;
|
||||
WorkItemType = workItemType;
|
||||
}
|
||||
|
||||
@ -105,6 +107,7 @@ internal class WorkItem
|
||||
title: workItem.Title,
|
||||
violation: workItem.Violation,
|
||||
weightedShortestJobFirst: workItem.WeightedShortestJobFirst,
|
||||
weightedShortestJobFirstFibonacci: workItem.WeightedShortestJobFirstFibonacci,
|
||||
workItemType: workItem.WorkItemType);
|
||||
return result;
|
||||
}
|
||||
@ -140,6 +143,7 @@ internal class WorkItem
|
||||
title: workItem.Title,
|
||||
violation: workItem.Violation,
|
||||
weightedShortestJobFirst: workItem.WeightedShortestJobFirst,
|
||||
weightedShortestJobFirstFibonacci: workItem.WeightedShortestJobFirstFibonacci,
|
||||
workItemType: workItem.WorkItemType);
|
||||
return result;
|
||||
}
|
||||
@ -172,7 +176,8 @@ internal class WorkItem
|
||||
[JsonPropertyName("TimeCriticality")] public long? TimeCriticality { get; }
|
||||
[JsonPropertyName("Title")] public string Title { get; }
|
||||
[JsonPropertyName("Violation")] public string? Violation { get; }
|
||||
[JsonPropertyName("WeightedShortestJobFirst")] public long? WeightedShortestJobFirst { get; }
|
||||
[JsonPropertyName("WeightedShortestJobFirst")] public decimal? WeightedShortestJobFirst { get; }
|
||||
[JsonPropertyName("WeightedShortestJobFirstFibonacci")] public decimal? WeightedShortestJobFirstFibonacci { get; }
|
||||
[JsonPropertyName("WorkItemType")] public string WorkItemType { get; }
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user