20 using Newtonsoft.Json;
21 using System.Collections.Generic;
80 public override DateTime
Value
99 var result =
new Dictionary<string, DateTime>();
100 foreach (var kvp
in new[] {
new Tuple<string, DateTime>(
"1M",
OneMonth),
new Tuple<string, DateTime>(
"2M",
TwoMonths),
new Tuple<string, DateTime>(
"3M",
ThreeMonths),
new Tuple<string, DateTime>(
"6M",
SixMonths),
new Tuple<string, DateTime>(
"9M",
NineMonths),
new Tuple<string, DateTime>(
"12M",
TwelveMonths) })
104 result[kvp.Item1] = kvp.Item2;