-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCustomSessionsAssignment.cs
More file actions
256 lines (228 loc) · 6.14 KB
/
CustomSessionsAssignment.cs
File metadata and controls
256 lines (228 loc) · 6.14 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
252
253
254
255
256
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 sealed class CustomSessionsAssignment : IUniqueID, ICustomizable, IEquatable<CustomSessionsAssignment>
{
[CompilerGenerated]
private string 녶놛;
[CompilerGenerated]
private bool 녶놼;
[CompilerGenerated]
private string 녶놗;
[CompilerGenerated]
private string 녶뇂;
[CompilerGenerated]
private string 녶놩;
[CompilerGenerated]
private string 녶녡;
public IList<SettingItem> Settings
{
get
{
return new List<SettingItem>
{
new SettingItemString(_26195AC7_002DD65B_002D4910_002DB963_002D637D18805E71.놭놸(), UniqueId),
new SettingItemBoolean(_26195AC7_002DD65B_002D4910_002DB963_002D637D18805E71.놭놫(), IsActive),
new SettingItemString(_26195AC7_002DD65B_002D4910_002DB963_002D637D18805E71.놭놿(), ConnectionId),
new SettingItemString(_26195AC7_002DD65B_002D4910_002DB963_002D637D18805E71.놭놄(), ExchangeId),
new SettingItemString(_26195AC7_002DD65B_002D4910_002DB963_002D637D18805E71.놭놰(), SymbolId),
new SettingItemString(_26195AC7_002DD65B_002D4910_002DB963_002D637D18805E71.놭놓(), CustomSessionsContainerId)
};
}
set
{
UniqueId = value.GetValueOrDefault(UniqueId, _26195AC7_002DD65B_002D4910_002DB963_002D637D18805E71.놭놸());
IsActive = value.GetValueOrDefault(IsActive, _26195AC7_002DD65B_002D4910_002DB963_002D637D18805E71.놭놫());
ConnectionId = value.GetValueOrDefault(ConnectionId, _26195AC7_002DD65B_002D4910_002DB963_002D637D18805E71.놭놿());
ExchangeId = value.GetValueOrDefault(ExchangeId, _26195AC7_002DD65B_002D4910_002DB963_002D637D18805E71.놭놄());
SymbolId = value.GetValueOrDefault(SymbolId, _26195AC7_002DD65B_002D4910_002DB963_002D637D18805E71.놭놰());
CustomSessionsContainerId = value.GetValueOrDefault(CustomSessionsContainerId, _26195AC7_002DD65B_002D4910_002DB963_002D637D18805E71.놭놓());
}
}
public string UniqueId
{
[CompilerGenerated]
get
{
return 녶놛;
}
[CompilerGenerated]
private set
{
녶놛 = value;
}
}
public bool IsActive
{
[CompilerGenerated]
get
{
return 녶놼;
}
[CompilerGenerated]
set
{
녶놼 = value;
}
}
public string ConnectionId
{
[CompilerGenerated]
get
{
return 녶놗;
}
[CompilerGenerated]
private set
{
녶놗 = value;
}
}
public string ExchangeId
{
[CompilerGenerated]
get
{
return 녶뇂;
}
[CompilerGenerated]
private set
{
녶뇂 = value;
}
}
public string SymbolId
{
[CompilerGenerated]
get
{
return 녶놩;
}
[CompilerGenerated]
private set
{
녶놩 = value;
}
}
public string CustomSessionsContainerId
{
[CompilerGenerated]
get
{
return 녶녡;
}
[CompilerGenerated]
internal set
{
녶녡 = value;
}
}
public ExchangeComplexIdentifier ExchangeComplexId => new ExchangeComplexIdentifier(ConnectionId, ExchangeId);
public SymbolComplexIdentifier SymbolComplexId => new SymbolComplexIdentifier(ConnectionId, ExchangeId, SymbolId);
public Connection Connection => Core.Instance.Connections[ConnectionId];
public Exchange Exchange => Core.Instance.Exchanges.FirstOrDefault(delegate(Exchange P_0)
{
ExchangeComplexIdentifier complexId = P_0.ComplexId;
ExchangeComplexIdentifier? obj = this?.ExchangeComplexId;
return complexId == obj;
});
public Symbol Symbol
{
get
{
try
{
if (string.IsNullOrEmpty(SymbolId))
{
return null;
}
return Core.Instance.GetSymbol(new GetSymbolRequestParameters
{
SymbolId = SymbolId
}, ConnectionId);
}
catch
{
return null;
}
}
}
public CustomSessionsContainer SessionsContainer => Core.Instance.CustomSessions[CustomSessionsContainerId];
public CustomSessionsAssignment(string containerId, string connectionId = null, string exchangeId = null, string symbolId = null)
: this()
{
IsActive = true;
CustomSessionsContainerId = containerId;
ConnectionId = connectionId;
ExchangeId = exchangeId;
SymbolId = symbolId;
}
public CustomSessionsAssignment(CustomSessionsAssignment origin)
: this()
{
IsActive = origin.IsActive;
ConnectionId = origin.ConnectionId;
ExchangeId = origin.ExchangeId;
SymbolId = origin.SymbolId;
CustomSessionsContainerId = origin.CustomSessionsContainerId;
}
internal CustomSessionsAssignment()
{
UniqueId = Guid.NewGuid().ToShortString();
}
internal void 녴(CustomSessionsAssignment P_0)
{
IsActive = P_0.IsActive;
ConnectionId = P_0.ConnectionId;
ExchangeId = P_0.ExchangeId;
SymbolId = P_0.SymbolId;
CustomSessionsContainerId = P_0.CustomSessionsContainerId;
}
public bool Equals(CustomSessionsAssignment other)
{
if (other == null)
{
return false;
}
if (this == other)
{
return true;
}
if (ConnectionId == other.ConnectionId && ExchangeId == other.ExchangeId && SymbolId == other.SymbolId)
{
return CustomSessionsContainerId == other.CustomSessionsContainerId;
}
return false;
}
public override bool Equals(object obj)
{
if (obj == null)
{
return false;
}
if (this == obj)
{
return true;
}
if (obj.GetType() != GetType())
{
return false;
}
return Equals((CustomSessionsAssignment)obj);
}
public override int GetHashCode()
{
return (((((((ConnectionId != null) ? ConnectionId.GetHashCode() : 0) * 397) ^ ((ExchangeId != null) ? ExchangeId.GetHashCode() : 0)) * 397) ^ ((SymbolId != null) ? SymbolId.GetHashCode() : 0)) * 397) ^ ((CustomSessionsContainerId != null) ? CustomSessionsContainerId.GetHashCode() : 0);
}
[CompilerGenerated]
private bool 녴(Exchange P_0)
{
ExchangeComplexIdentifier complexId = P_0.ComplexId;
ExchangeComplexIdentifier? obj = this?.ExchangeComplexId;
return complexId == obj;
}
}