-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCustomSession.cs
More file actions
251 lines (226 loc) · 5.34 KB
/
CustomSession.cs
File metadata and controls
251 lines (226 loc) · 5.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.CompilerServices;
using _003CPrivateImplementationDetails_003E_007B32439FAB_002DE055_002D4B6F_002D932A_002DAD6005671EA2_007D;
using TradingPlatform.BusinessLayer.Utils.Extensions;
namespace TradingPlatform.BusinessLayer;
public class CustomSession : ISession, ICustomizable
{
[Serializable]
[CompilerGenerated]
private sealed class 녴
{
public static readonly 녴 놇놵 = new 녴();
public static Func<DayOfWeek, string> 놇놡;
internal string 녴(DayOfWeek P_0)
{
return P_0.ToString();
}
}
[CompilerGenerated]
private bool 녶놸;
[CompilerGenerated]
private string 녶놿;
[CompilerGenerated]
private SessionType 녶놄;
[CompilerGenerated]
private TimeSpan 녶놰;
[CompilerGenerated]
private TimeSpan 녶놓;
[CompilerGenerated]
private TimeSpan 녶놇;
[CompilerGenerated]
private TimeSpan 녶뇅;
private bool 녶놵;
[CompilerGenerated]
private DayOfWeek[] 녶놡;
[CompilerGenerated]
private bool 녶놻;
public bool IsActive
{
[CompilerGenerated]
get
{
return 녶놸;
}
[CompilerGenerated]
set
{
녶놸 = value;
}
}
public string Name
{
[CompilerGenerated]
get
{
return 녶놿;
}
[CompilerGenerated]
set
{
녶놿 = value;
}
}
public SessionType Type
{
[CompilerGenerated]
get
{
return 녶놄;
}
[CompilerGenerated]
set
{
녶놄 = value;
}
}
public TimeSpan OpenTime
{
[CompilerGenerated]
get
{
return 녶놰;
}
[CompilerGenerated]
private set
{
녶놰 = value;
}
}
public TimeSpan CloseTime
{
[CompilerGenerated]
get
{
return 녶놓;
}
[CompilerGenerated]
private set
{
녶놓 = value;
}
}
public TimeSpan OpenOffset
{
[CompilerGenerated]
get
{
return 녶놇;
}
[CompilerGenerated]
set
{
녶놇 = value;
}
}
public TimeSpan CloseOffset
{
[CompilerGenerated]
get
{
return 녶뇅;
}
[CompilerGenerated]
set
{
녶뇅 = value;
}
}
public DayOfWeek[] Days
{
[CompilerGenerated]
get
{
return 녶놡;
}
[CompilerGenerated]
set
{
녶놡 = value;
}
}
public bool IsPrimary
{
[CompilerGenerated]
get
{
return 녶놻;
}
[CompilerGenerated]
set
{
녶놻 = value;
}
}
public IList<SettingItem> Settings
{
get
{
return new List<SettingItem>
{
new SettingItemBoolean(_26195AC7_002DD65B_002D4910_002DB963_002D637D18805E71.놭놫(), IsActive),
new SettingItemString(_26195AC7_002DD65B_002D4910_002DB963_002D637D18805E71.놂놝(), Name),
new SettingItemInteger(_26195AC7_002DD65B_002D4910_002DB963_002D637D18805E71.녶농(), (int)Type),
new SettingItemLong(_26195AC7_002DD65B_002D4910_002DB963_002D637D18805E71.놭녶(), OpenOffset.Ticks),
new SettingItemLong(_26195AC7_002DD65B_002D4910_002DB963_002D637D18805E71.놭녵(), CloseOffset.Ticks),
new SettingItemString(_26195AC7_002DD65B_002D4910_002DB963_002D637D18805E71.놭놭(), string.Join(_26195AC7_002DD65B_002D4910_002DB963_002D637D18805E71.놂녤(), Days.Select((DayOfWeek P_0) => P_0.ToString())))
};
}
set
{
IsActive = value.GetValueOrDefault(IsActive, _26195AC7_002DD65B_002D4910_002DB963_002D637D18805E71.놭놫());
Name = value.GetValueOrDefault(Name, _26195AC7_002DD65B_002D4910_002DB963_002D637D18805E71.놂놝());
Type = (SessionType)value.GetValueOrDefault((int)Type, _26195AC7_002DD65B_002D4910_002DB963_002D637D18805E71.녶농());
if (value.TryGetValue<long>(_26195AC7_002DD65B_002D4910_002DB963_002D637D18805E71.놭녶(), out var value2))
{
OpenOffset = TimeSpan.FromTicks(value2);
if (value.TryGetValue<long>(_26195AC7_002DD65B_002D4910_002DB963_002D637D18805E71.놭녵(), out var value3))
{
CloseOffset = TimeSpan.FromTicks(value3);
}
}
else
{
녶놵 = true;
if (value.TryGetValue<long>(_26195AC7_002DD65B_002D4910_002DB963_002D637D18805E71.놭녲(), out var value4))
{
OpenTime = TimeSpan.FromTicks(value4);
}
if (value.TryGetValue<long>(_26195AC7_002DD65B_002D4910_002DB963_002D637D18805E71.놭뇋(), out var value5))
{
CloseTime = TimeSpan.FromTicks(value5);
}
}
if (!value.TryGetValue<string>(_26195AC7_002DD65B_002D4910_002DB963_002D637D18805E71.놭놭(), out var value6))
{
return;
}
string[] array = value6.Split(new string[1] { _26195AC7_002DD65B_002D4910_002DB963_002D637D18805E71.놂녤() }, StringSplitOptions.RemoveEmptyEntries);
List<DayOfWeek> list = new List<DayOfWeek>();
string[] array2 = array;
for (int i = 0; i < array2.Length; i++)
{
if (Enum.TryParse<DayOfWeek>(array2[i], ignoreCase: true, out var result))
{
list.Add(result);
}
}
Days = list.ToArray();
}
}
public void RecalculateOpenCloseTime(TimeZoneInfo timeZoneInfo)
{
if (녶놵)
{
OpenOffset = OpenTime.ConvertTimeZone(TimeZoneInfo.Utc, timeZoneInfo);
CloseOffset = CloseTime.ConvertTimeZone(TimeZoneInfo.Utc, timeZoneInfo);
}
else
{
OpenTime = OpenOffset.ConvertTimeZone(timeZoneInfo, TimeZoneInfo.Utc);
CloseTime = CloseOffset.ConvertTimeZone(timeZoneInfo, TimeZoneInfo.Utc);
}
}
}