Public general use code classes and xml files that we've compiled and used over the years:
SubParty Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
1: using System;
2: using System.Collections.Generic;
3: using System.ComponentModel.DataAnnotations;
4: using System.ComponentModel.DataAnnotations.Schema;
5: using System.Linq;
6: using System.Threading;
7: using System.Threading.Tasks;
8:
9: namespace Ia.Ftn.Cl.Model.Nokia
10: {
11: ////////////////////////////////////////////////////////////////////////////
12:
13: /// <summary publish="true">
14: /// SubParty Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
15: /// </summary>
16: ///
17: /// <remarks>
18: /// Copyright � 2014-2021 Jasem Y. Al-Shamlan (info@ia.com.kw), Integrated Applications - Kuwait. All Rights Reserved.
19: ///
20: /// This library is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by
21: /// the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
22: ///
23: /// This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
24: /// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
25: ///
26: /// You should have received a copy of the GNU General Public License along with this library. If not, see http://www.gnu.org/licenses.
27: ///
28: /// Copyright notice: This notice may not be removed or altered from any source distribution.
29: /// </remarks>
30: public class SubParty
31: {
32: /// <summary>
33: /// 1360 COM WebAPI User Guide 255-400-419R3.X
34: /// ngfs-subparty-v2(rtrv)
35: /// </summary>
36: public SubParty() { }
37:
38: /// <summary/>
39: [Key, DatabaseGenerated(DatabaseGeneratedOption.None)]
40: public string Id { get; set; }
41:
42: /// <summary>
43: /// PartyId (req for ent,req for ed). LCP Name for Party record. String (1-27) [+0-9a-zA-Z:@&=!,|-_.!~*()%]* Before CTS R5.0: [+0-9a-zA-Z:@&=!,-_.!~*'()%]* LCP-CTS R6.1 From CTS R6.1: [+0-9a-zA-Z:@&=,|-_.!~*'()%#?/$][]* If the String Ends with '[AutoSelect]', '[AutoSelectSTAS]', or '[AutoSelectDTAS]' The Subscriber will be automatically distributed to the TASs. When [AutoSelect],[AutoSelectDTAS] or [AutoSelectSTAS] is used in ent- request, AssocOtasRealm should be empty. And the OTAS which has fewest subscriber will be chosen as AssocOtasRealm. For non-ICS subscriber request (do not include iHss private id info), [AutoSelect] can be used. For the subscriber request which include iHss Private Id info, [AutoSelectDTAS] and [AutoSelectSTAS] can be used. And the Realm in OTAS must match the "ApplicateionServer" defined in iHss Global IFC and this IFC must be used by iHss Service profile. Otherwise, error will be reported thant no service profile for this OTAS. String length does not include length of '[AutoSelect]', '[AutoSelectSTAS]', and '[AutoSelectDTAS]'. LCP-CTS R6.2.1 The new partyId. Used for changing partyId. Only used for ed command. Range same as PartyId.
44: /// </summary>
45: public string PartyId { get; set; }
46: /// <summary>
47: /// DisplayName (opt for ent,opt for ed). LCP DisplayName that is displayed on a Caller ID String (0-15).[+0-9a-zA-Z(),':@&=!\-_\.!~\*%#><$^\|?{}\[\];/`]*
48: /// </summary>
49: public string DisplayName { get; set; }
50:
51: /// <summary>
52: /// Category (req for ent,opt for ed). LCP String containing the Feature Set the party is assigned. The category is the feature bundle.
53: /// </summary>
54: public string Category { get; set; }
55:
56: /// <summary>
57: /// NewPartyId (opt for ent,opt for ed). LCP-CTS R9.1 Starting in COM 4.1, deprecated for switches on release CTS R9.1 and later. Use exec-ngfs-subscriber-changekey-v2.
58: /// </summary>
59: public string NewPartyId { get; set; }
60:
61: /// <summary>
62: /// PrimaryPUID (req for ent,opt for ed). LCP Primary Phone number of endpoint. String (1-32) [+0-9a-zA-Z:,\-_\.()]* LCP-CTS R6.1 From CTS R6.1: String(1-252) [+0-9a-zA-Z:,-_.()&=?~/$'!*]* LCP-CTS R9.0 From CTS 9.0, format puid@Domain is supported.All features assigned to this PUID also support @domain. puid length (1-32) [0-9a-zA-Z&=\+$,\?/\-_\.!~\*'()]* domain is predefined in subscriber home domain, max length 219
63: /// </summary>
64: public string PrimaryPUID { get; set; }
65:
66: /// <summary>
67: /// NewPrimaryPUID (opt for ent,opt for ed). LCP-CTS R6.2.1 The new PrimaryPUId. Used for changing PrimaryPUID. Only used for ed command. Range same as PrimaryPUID. LCP-CTS R9.1 Starting in COM 4.1, deprecated for switches on release CTS R9.1 and later. Use exec-ngfs-subscriber-changekey-v2.
68: /// </summary>
69: public string NewPrimaryPUID { get; set; }
70:
71: /// <summary>
72: /// PrimaryPUIDDomainRequired (opt for ent,opt for ed). LCP-CTS R9.0 Boolean (true or false). Default false.
73: /// </summary>
74: public bool PrimaryPUIDDomainRequired { get; set; }
75:
76: /// <summary>
77: /// PrimaryPUIDCPEProfileNumber (req for ent,opt for ed). LCP Identifies type of CPE Int (0-255)
78: /// </summary>
79: public int PrimaryPUIDCPEProfileNumber { get; set; }
80:
81: /// <summary>
82: /// PrimaryPUIDFlashable (opt for ent,opt for ed). LCP Has flash capabilities. Boolean (true or false)
83: /// </summary>
84: public bool PrimaryPUIDFlashable { get; set; }
85:
86: /// <summary>
87: /// AssocOtasRealm (opt for ent,opt for ed). LCP The TAS that supports this party. String (0-63) [0-9a-zA-Z\.\-]*
88: /// </summary>
89: public string AssocOtasRealm { get; set; }
90:
91: /// <summary>
92: /// NetworkProfileName (opt for ent,opt for ed). LCP-CTS R7.1.1 Name of the Network Profile String (0-20) [0-9a-zA-Z\-_]* When a subparty is associated with a template, any conflicting field will be silently overridden by the template's value.
93: /// </summary>
94: public string NetworkProfileName { get; set; }
95:
96: /// <summary>
97: /// NetworkProfileVersion (opt for ent,opt for ed). LCP-CTS R7.1.1 Version of the Network Profile int (1-99)
98: /// </summary>
99: public int NetworkProfileVersion { get; set; }
100:
101: /// <summary>
102: /// ServiceProfileName (opt for ent,opt for ed). LCP-CTS R7.1.1 Name of the Service Profile String (0-20) [0-9a-zA-Z\-_]* When a subparty is associated with a template, any conflicting field will be silently overridden by the template's value.
103: /// </summary>
104: public string ServiceProfileName { get; set; }
105:
106: /// <summary>
107: /// ServiceProfileVersion (opt for ent,opt for ed). LCP-CTS R7.1.1 Version of the Service Profile int (1-99)
108: /// </summary>
109: public int ServiceProfileVersion { get; set; }
110:
111: /// <summary>
112: /// IsReducedServiceProfile (opt for ent,opt for ed). LCP-CTS R9.0 Boolean (true or false). Default is false. This field indicates whether the Service Profile is a Reduced Service Profile or a regular Service Profile profile type.
113: /// </summary>
114: public bool IsReducedServiceProfile { get; set; }
115:
116: /// <summary>
117: /// CallLimit (opt for ent,opt for ed). LCP Maximum number of simultaneous calls permitted for this subscriber. Integer(1-1024) For CTS R9.1 and later, Integer(1-1920) LCP-CTS R10.2 Integer(1-2500)
118: /// </summary>
119: public int CallLimit { get; set; }
120:
121: /// <summary>
122: /// ServiceSuspension (opt for ent,opt for ed). LCP Suspend services Boolean (true or false)
123: /// </summary>
124: public bool ServiceSuspension { get; set; }
125:
126: /// <summary>
127: /// OriginationSuspension (opt for ent,opt for ed). LCP-CTS R9.2.1 Boolean (true or false). Default false. Only the ability to originate a call is suspended.
128: /// </summary>
129: public bool OriginationSuspension { get; set; }
130:
131: /// <summary>
132: /// TerminationSuspension (opt for ent,opt for ed). LCP-CTS R9.2.1 Boolean (true or false). Default false. Only the ability to receive a call is suspended.
133: /// </summary>
134: public bool TerminationSuspension { get; set; }
135:
136: /// <summary>
137: /// SuspensionNotification (opt for ent,opt for ed). LCP-CTS R9.2.1 Boolean (true or false). Default false. Neither originating or terminating service is barred or blocked; however any originating attempt results in a announcement being played that is intended to warn the subscriber that their service may soon be suspended due to non-payment.
138: /// </summary>
139: public bool SuspensionNotification { get; set; }
140:
141: /// <summary>
142: /// UserOrigSuspension (opt for ent,opt for ed). LCP-CTS R9.2.1 Boolean (true or false). Default false. This indicates that the subscriber requested the suspension of their own service for originations (during which time they pay a reduced fee).
143: /// </summary>
144: public bool UserOrigSuspension { get; set; }
145:
146: /// <summary>
147: /// UserTermSuspension (opt for ent,opt for ed). LCP-CTS R9.2.1 Boolean (true or false). Default false. This indicates that the subscriber requested the suspension of their own service for terminations (during which time they pay a reduced fee).
148: /// </summary>
149: public bool UserTermSuspension { get; set; }
150:
151: /// <summary>
152: /// AssocWpifRealm (opt for ent,opt for ed). LCP Web portal interface URI. String(0-63) [0-9a-zA-Z\.\-]*
153: /// </summary>
154: public string AssocWpifRealm { get; set; }
155:
156: /// <summary>
157: /// IddPrefix (opt for ent,opt for ed). LCP-CTS R3.0 IDD Prefix. Number string(0-5)
158: /// </summary>
159: public string IddPrefix { get; set; }
160:
161: /// <summary>
162: /// AlternateFsdbFqdn (opt for ent,opt for ed). LCP-CTS R3.0 Alternate Fsdb fully qualified domain name.If there is no Primary/Protection Geographic Redundancy this field shall not be populated. String(0-63) [0-9a-zA-Z:-_.]*
163: /// </summary>
164: public string AlternateFsdbFqdn { get; set; }
165:
166: /// <summary>
167: /// SharedHssData (opt for ent,opt for ed). LCP-CTS R3.0 Has Shared Hss Data or not. Boolean(true or false)
168: /// </summary>
169: public bool SharedHssData { get; set; }
170:
171: /// <summary>
172: /// Pin (opt for ent,opt for ed). LCP-CTS R4.0 String(0 or 4-10) [0-9]* Pin is required for the User Control options under the CallBarring/CallBlocking feature. Note: If you change this pin field you must also change the associated PSI Extension and PSI User pins LCP-CTS R9.0 Deprecated since CTS R9.0.
173: /// </summary>
174: public string Pin { get; set; }
175:
176: /// <summary>
177: /// MsnCapability (opt for ent,opt for ed). LCP-CTS R6.1 Boolean (true or false) Indicates that the subscriber is allowed to utilize Multiple Subscriber Number Service. MSN service provides additional service support on a per PUID basis, i.e. ACR will be capable of assigning to each PUID in the party when MsnCapability is set. Default false
178: /// </summary>
179: public bool MsnCapability { get; set; }
180:
181: /// <summary>
182: /// VideoProhibit (opt for ent,opt for ed). LCP-CTS R9.0 Boolean(true or false) Default: false
183: /// </summary>
184: public bool VideoProhibit { get; set; }
185:
186: /// <summary>
187: /// MaxFwdHops (opt for ent,opt for ed). LCP-CTS R4.1 Maximum number of Call Forwarding Hops Integer (1-20) Default 10
188: /// </summary>
189: public int MaxFwdHops { get; set; }
190:
191: /// <summary>
192: /// CsdFlavor (opt for ent,opt for ed). LCP-CTS R5.0 Valid values: TAS_CSD_NONE, TAS_CSD_AIMS_P0, TAS_CSD_ALU_P2
193: /// </summary>
194: public int CsdFlavor { get; set; }
195:
196: /// <summary>
197: /// CsdDynamic (opt for ent,opt for ed). LCP-CTS R6.1 Boolean (true or false) Indicates that the subscriber is allowed to utilize the Centralized Subscriber Database. Default false
198: /// </summary>
199: public bool CsdDynamic { get; set; }
200:
201: /// <summary>
202: /// SipErrorTableId (opt for ent,opt for ed). LCP-CTS R5.0 SIP error handling table ID which can be assigned on a per Party basis to provide the flexibility to support individual customization for handling SIP error responses. Integer (1- 255) Default: 0: the system table LCP-CTS R7.1 SIP error handling table ID which can be assigned on a per Party basis to provide the flexibility to support individual customization for handling SIP error responses on the originating side. Integer (1- 255) Default: 0: the system table
203: /// </summary>
204: public int SipErrorTableId { get; set; }
205:
206: /// <summary>
207: /// TreatmentTableId (opt for ent,opt for ed). LCP-CTS R5.0 Treatment table ID which can be assigned on a per Party basis to provide the flexibility to support individual treatment tables for Wholesaling and VPN type services. Integer (120-1145) Default: 0: the default treatment table
208: /// </summary>
209: public int TreatmentTableId { get; set; }
210:
211: /// <summary>
212: /// Locale (opt for ent,opt for ed). LCP-CTS R5.0 The locale of the subscriber which is used to override the system locale on a per Party basis. ([a-zA-Z]{2}([a-zA-Z]) ?_[a-zA-Z]{2}([a-zA-Z])?)? For example: en_us LCP-CTS R9.2 From CTS R9.2, deprecated.
213: /// </summary>
214: public string Locale { get; set; }
215:
216: /// <summary>
217: /// CliPrefixList (opt for ent,opt for ed). LCP-CTS R5.0 A comma separated list of prefixes which are to be stripped off before presenting calling or called numbers. String (0-35) [0-9,]*
218: /// </summary>
219: public string CliPrefixList { get; set; }
220:
221: /// <summary>
222: /// IsGroupCPE (opt for ent,opt for ed). LCP-CTS R5.0 Boolean (true or false) A party cannot require Group CPE processing and also be marked as a flashable endpoint.
223: /// </summary>
224: public bool IsGroupCPE { get; set; }
225:
226: /// <summary>
227: /// Receive181Mode (opt for ent,opt for ed). LCP-CTS R5.0 Valid value: TAS_181_NONE, TAS_181_WITH_FWINFO Default is TAS_181_NONE
228: /// </summary>
229: public int Receive181Mode { get; set; }
230:
231: /// <summary>
232: /// CcNdcLength (opt for ent,opt for ed). LCP-CTS R6.0 0 or integer (3-10) default 0
233: /// </summary>
234: public int CcNdcLength { get; set; }
235:
236: /// <summary>
237: /// MaxActiveCalls (opt for ent,opt for ed). LCP-CTS R6.0 Integer (0-2500) default 0 The value should not be greater than Call Limit.
238: /// </summary>
239: public int MaxActiveCalls { get; set; }
240:
241: /// <summary>
242: /// CallingPartyCategory (opt for ent,opt for ed). LCP-CTS R6.1 String indicates the Party Type. Valid Values: CPC_ORDINARY, CPC_OPERATOR, CPC_PRIORITY, CPC_DATA, CPC_TEST, CPC_PAYPHONE, CPC_CELLULAR, CPC_PRISON, CPC_HOTEL, CPC_POLICE, CPC_UNKNOWN, CPC_HOSPITAL, CPC_SPARE14, CPC_SPARE15, CPC_SPARE16, CPC_SPARE17, CPC_SPARE18, CPC_SPARE19, CPC_SPARE20, CPC_SPARE21, CPC_SPARE22, CPC_SPARE23, CPC_SPARE24, CPC_SPARE25, CPC_SPARE26, CPC_SPARE27, CPC_SPARE28, CPC_SPARE29, CPC_SPARE30, CPC_SPARE31, Default CPC_ORDINARY
243: /// </summary>
244: public int CallingPartyCategory { get; set; }
245:
246: /// <summary>
247: /// PublicUID1 (opt for ent,opt for ed). LCP Secondary Phone number of endpoint. String (1-32) [+0-9a-zA-Z:,\-_\.()]* LCP-CTS R6.1 From CTS R6.1: String(1-252) [+0-9a-zA-Z:,-_.()&=?~/$'!*]* LCP-CTS R9.0 From CTS 9.0, format puid@Domain is supported. All features assigned to this PUID also support @domain. puid length (1-32) [0-9a-zA-Z&=\+$,\?/\-_\.!~\*'()]* domain is predefined in subscriber home domain, max length 219
248: /// </summary>
249: public string PublicUID1 { get; set; }
250:
251: /// <summary>
252: /// PublicUID2 (opt for ent,opt for ed). LCP The same as PublicUID1 LCP-CTS R9.0 From CTS 9.0, format puid@Domain is supported.All features assigned to this PUID also support @domain. puid length (1-32) [0-9a-zA-Z&=\+$,\?/\-_\.!~\*'()]* domain is predefined in subscriber home domain, max length 219
253: /// </summary>
254: public string PublicUID2 { get; set; }
255:
256: /// <summary>
257: /// PublicUID3 (opt for ent,opt for ed). LCP-CTS R9.0 From CTS 9.0, format puid@Domain is supported.All LCP The same as PublicUID1 features assigned to this PUID also support @domain. puid length (1-32) [0-9a-zA-Z&=\+$,\?/\-_\.!~\*'()]* domain is predefined in subscriber home domain, max length 219
258: /// </summary>
259: public string PublicUID3 { get; set; }
260:
261: /// <summary>
262: /// PublicUID4 (opt for ent,opt for ed). LCP-CTS R9.0 From CTS 9.0, format puid@Domain is supported.All LCP The same as PublicUID1 features assigned to this PUID also support @domain. puid length (1-32) [0-9a-zA-Z&=\+$,\?/\-_\.!~\*'()]* domain is predefined in subscriber home domain, max length 219
263: /// </summary>
264: public string PublicUID4 { get; set; }
265:
266: /// <summary>
267: /// PublicUID5 (opt for ent,opt for ed). LCP The same as PublicUID1 LCP-CTS R9.0 From CTS 9.0, format puid@Domain is supported.All features assigned to this PUID also support @domain. puid length (1-32) [0-9a-zA-Z&=\+$,\?/\-_\.!~\*'()]* domain is predefined in subscriber home domain, max length 219
268: /// </summary>
269: public string PublicUID5 { get; set; }
270:
271: /// <summary>
272: /// PublicUID6 (opt for ent,opt for ed). LCP-CTS R9.0 From CTS 9.0, format puid@Domain is supported.All LCP The same as PublicUID1 features assigned to this PUID also support @domain. puid length (1-32) [0-9a-zA-Z&=\+$,\?/\-_\.!~\*'()]* domain is predefined in subscriber home domain, max length 219
273: /// </summary>
274: public string PublicUID6 { get; set; }
275:
276: /// <summary>
277: /// PublicUID7 (opt for ent,opt for ed) LCP The same as PublicUID1 LCP-CTS R9.0 From CTS 9.0, format puid@Domain is supported.All LCP The same as PublicUID1 features assigned to this PUID also support @domain. puid length (1-32) [0-9a-zA-Z&=\+$,\?/\-_\.!~\*'()]* domain is predefined in subscriber home domain, max length 219
278: /// </summary>
279: public string PublicUID7 { get; set; }
280:
281: /// <summary>
282: /// PublicUID8 (opt for ent,opt for ed). LCP-CTS R6.0 The same as PublicUID1 LCP-CTS R9.0 From CTS 9.0, format puid@Domain is supported.All features assigned to this PUID also support @domain. puid length (1-32) [0-9a-zA-Z&=\+$,\?/\-_\.!~\*'()]* domain is predefined in subscriber home domain, max length 219
283: /// </summary>
284: public string PublicUID8 { get; set; }
285:
286: /// <summary>
287: /// PublicUID9 (opt for ent,opt for ed). LCP-CTS R6.0 The same as PublicUID1 LCP-CTS R9.0 From CTS 9.0, format puid@Domain is supported.All features assigned to this PUID also support @domain. puid length (1-32) [0-9a-zA-Z&=\+$,\?/\-_\.!~\*'()]* domain is predefined in subscriber home domain, max length 219
288: /// </summary>
289: public string PublicUID9 { get; set; }
290:
291: /// <summary>
292: /// PublicUID1DomainRequired (opt for ent,opt for ed). LCP-CTS R9.0 Boolean (true or false).Default false.
293: /// </summary>
294: public bool PublicUID1DomainRequired { get; set; }
295:
296: /// <summary>
297: /// PublicUID2DomainRequired (opt for ent,opt for ed). LCP-CTS R9.0 Boolean (true or false).Default false.
298: /// </summary>
299: public bool PublicUID2DomainRequired { get; set; }
300:
301: /// <summary>
302: /// PublicUID3DomainRequired (opt for ent,opt for ed). LCP-CTS R9.0 Boolean (true or false) Default false.
303: /// </summary>
304: public bool PublicUID3DomainRequired { get; set; }
305:
306: /// <summary>
307: /// PublicUID4DomainRequired (opt for ent,opt for ed). LCP-CTS R9.0 Boolean (true or false) Default false.
308: /// </summary>
309: public bool PublicUID4DomainRequired { get; set; }
310:
311: /// <summary>
312: /// PublicUID5DomainRequired (opt for ent,opt for ed). LCP-CTS R9.0 Boolean (true or false) Default false.
313: /// </summary>
314: public bool PublicUID5DomainRequired { get; set; }
315:
316: /// <summary>
317: /// PublicUID6DomainRequired (opt for ent,opt for ed). LCP-CTS R9.0 Boolean (true or false) Default false.
318: /// </summary>
319: public bool PublicUID6DomainRequired { get; set; }
320:
321: /// <summary>
322: /// PublicUID7DomainRequired (opt for ent,opt for ed). LCP-CTS R9.0 Boolean (true or false)Default false.
323: /// </summary>
324: public bool PublicUID7DomainRequired { get; set; }
325:
326: /// <summary>
327: /// PublicUID8DomainRequired (opt for ent,opt for ed). LCP-CTS R9.0 Boolean (true or false)Default false.
328: /// </summary>
329: public bool PublicUID8DomainRequired { get; set; }
330:
331: /// <summary>
332: /// PublicUID9DomainRequired (opt for ent,opt for ed). LCP-CTS R9.0 Boolean (true or false)Default false.
333: /// </summary>
334: public bool PublicUID9DomainRequired { get; set; }
335:
336: /// <summary>
337: /// WildCardPUIDStr (opt for ent,opt for ed). LCP-CTS R6.0 Format as: WildCardPUID1` WildCardPUID2`...... The max number for WildCardPUID is 31. Wild-card Puids have a different format than regular PUID. They are numbers with the wild-card part at the end delimited by '!'. Few examples of wildcard PUIDs: 163000![1-9]! Range 1630001 - 1630009 16300![1-9][0-9]! Range 1630010 - 1630099 1630![1-9][0-9].! Range 1630100 - 1630999 String(3-64) (+)?[0-9]*(!)[0-9-.*[]]+(!)
338: /// </summary>
339: public string WildCardPUIDStr { get; set; }
340:
341: /// <summary>
342: /// AllowCustomAnnouncement (opt for ent,opt for ed). LCP-CTS R6.1 Boolean (true or false) Indicates if the subscriber is allowed to use custom announcements. Default false
343: /// </summary>
344: public bool AllowCustomAnnouncement { get; set; }
345:
346: /// <summary>
347: /// PtySpareLong1 (opt for ent,opt for ed). LCP-CTS R6.1a (0-4294967295) default 0 The following party level spare fields are not stored in CTS database now.
348: /// </summary>
349: public long PtySpareLong1 { get; set; }
350:
351: /// <summary>
352: /// PtySpareString (opt for ent,opt for ed). LCP-CTS R6.1a The length is between 0 and 252.
353: /// </summary>
354: public string PtySpareString { get; set; }
355:
356: /// <summary>
357: /// PtySpareString2 (opt for ent,opt for ed). LCP-CTS R10.0 The length is between 0 and 252.
358: /// </summary>
359: public string PtySpareString2 { get; set; }
360:
361: /// <summary>
362: /// PtySpareShort1 (opt for ent,opt for ed). LCP-CTS R6.1a (0-65535) default 0
363: /// </summary>
364: public int PtySpareShort1 { get; set; }
365:
366: /// <summary>
367: /// PtySpareShort2 (opt for ent,opt for ed). LCP-CTS R6.1a (0-65535) default 0
368: /// </summary>
369: public int PtySpareShort2 { get; set; }
370:
371: /// <summary>
372: /// PtySpareBool1 (opt for ent,opt for ed). LCP-CTS R6.1a Boolean (true or false) default false
373: /// </summary>
374: public bool PtySpareBool1 { get; set; }
375:
376: /// <summary>
377: /// PtySpareBool2 (opt for ent,opt for ed). LCP-CTS R6.1a Boolean (true or false) default false
378: /// </summary>
379: public bool PtySpareBool2 { get; set; }
380:
381: /// <summary>
382: /// PtySpareBool3 (opt for ent,opt for ed). LCP-CTS R6.1a Boolean (true or false) default false
383: /// </summary>
384: public bool PtySpareBool3 { get; set; }
385:
386: /// <summary>
387: /// PtySpareBool4 (opt for ent,opt for ed). LCP-CTS R6.1a Boolean (true or false) default false
388: /// </summary>
389: public bool PtySpareBool4 { get; set; }
390:
391: /// <summary>
392: /// PtySpareBool5 (opt for ent,opt for ed). LCP-CTS R6.1a Boolean (true or false) default false
393: /// </summary>
394: public bool PtySpareBool5 { get; set; }
395:
396: /// <summary>
397: /// PtySpareBool6 (opt for ent,opt for ed). LCP-CTS R6.1a Boolean (true or false) default false
398: /// </summary>
399: public bool PtySpareBool6 { get; set; }
400:
401: /// <summary>
402: /// PtySpareBool7 (opt for ent,opt for ed). LCP-CTS R6.1a Boolean (true or false) default false
403: /// </summary>
404: public bool PtySpareBool7 { get; set; }
405:
406: /// <summary>
407: /// PtySpareBool8 (opt for ent,opt for ed). LCP-CTS R6.1a Boolean (true or false) default false
408: /// </summary>
409: public bool PtySpareBool8 { get; set; }
410:
411: /// <summary>
412: /// TerminatingTableId (opt for ent,opt for ed). LCP-CTS R7.1 Terminating SIP error handling table ID which can be assigned on a per Party basis to provide the flexibility to support individual customization for handling terminating SIP error responses on the terminating side. Integer (1- 255) Default: 0: the system table
413: /// </summary>
414: public int TerminatingTableId { get; set; }
415:
416: /// <summary>
417: /// AllowNonSipTelUri (opt for ent,opt for ed). LCP-CTS R8.0 Boolean (true or false) Default false
418: /// </summary>
419: public bool AllowNonSipTelUri { get; set; }
420:
421: /// <summary>
422: /// LocationType (opt for ent,opt for ed). LCP-CTS R8.1.1 One of: - None - EHRPD - LTE - 3G-1X (1) If we set "None" to "LocationType", "RncID", "LteMcc", "LteMnc", "LteTac", "MarketSID" and "SwitchNumber" could be only set null value. (2) If we set "EHRPD" to "LocationType", "RncID" could be inputted with value. Meanwhile, null could only be set to "LteMcc", "LteMnc", "LteTac", "MarketSID" and "SwitchNumber". (3) If we set "LTE" to "LocationType", "LteMcc", "LteMnc" and "LteTac" could be inputed with value. Meanwhile, null could only be set to "MarketSID", "SwitchNumber"and "RncID". (4) If we set "3G-1X" to "LocationType", "MarketSID" and "SwitchNumber" could be inputted with value. Meanwhile, null could only be set to "RncID", "LteMcc", "LteMnc" and "LteTac".
423: /// </summary>
424: public int LocationType { get; set; }
425:
426: /// <summary>
427: /// RncID (opt for ent,opt for ed). LCP-CTS R8.1.1 String (3..15) Required when LocationType=EHRPD
428: /// </summary>
429: public string RncID { get; set; }
430:
431: /// <summary>
432: /// LteMcc (opt for ent,opt for ed). LCP-CTS R8.1.1 string(3) Required when LocationType=LTE
433: /// </summary>
434: public string LteMcc { get; set; }
435:
436: /// <summary>
437: /// LteMnc (opt for ent,opt for ed). LCP-CTS R8.1.1 string(2..3) Required when LocationType=LTE
438: /// </summary>
439: public string LteMnc { get; set; }
440:
441: /// <summary>
442: /// LteTac (opt for ent,opt for ed). LCP-CTS R8.1.1 number 0..65535 Required when LocationType=LTE
443: /// </summary>
444: public int LteTac { get; set; }
445:
446: /// <summary>
447: /// MarketSID (opt for ent,opt for ed). LCP-CTS R8.1.1 number 0..65535 Required when LocationType=3G-1X
448: /// </summary>
449: public int MarketSID { get; set; }
450:
451: /// <summary>
452: /// SwitchNumber (opt for ent,opt for ed). LCP-CTS R8.1.1 Number 0..255 Required when LocationType=3G-1X
453: /// </summary>
454: public int SwitchNumber { get; set; }
455:
456: /// <summary>
457: /// CallsToWebUserProhibited (opt for ent,opt for ed). LCP-CTS R9.0 Boolean (true or false). Default false
458: /// </summary>
459: public bool CallsToWebUserProhibited { get; set; }
460:
461: /// <summary>
462: /// IMSI (opt for ent,opt for ed). LCP-CTS R10.1 String:blank or 6-15 digits Default blank
463: /// </summary>
464: public string IMSI { get; set; }
465:
466: /// <summary>
467: /// IMSNotSupported (opt for ent,opt for ed). LCP-CTS R10.1 Boolean: true or false Default: false
468: /// </summary>
469: public bool IMSNotSupported { get; set; }
470:
471: /// <summary>
472: /// ValidateCellID (opt for ent,opt for ed). LCP-CTS R10.1 Boolean(true or false) Default: false
473: /// </summary>
474: public bool ValidateCellID { get; set; }
475:
476: /// <summary>
477: /// OperatorID (opt for ent,opt for ed). LCP-CTS R10.1 Integer (0-999) default 0
478: /// </summary>
479: public int OperatorID { get; set; }
480:
481: /// <summary>
482: /// HomeMTA (opt for ent,opt for ed). LCP-CTS R10.1 Integer (0-99) default 0
483: /// </summary>
484: public int HomeMTA { get; set; }
485:
486: /// <summary>
487: /// ForwardDenyNumbers (opt for ent,opt for ed). LCP-CTS R10.1 Boolean (true or false). Default is false.
488: /// </summary>
489: public bool ForwardDenyNumbers { get; set; }
490:
491: /// <summary>
492: /// PlayAnnoFailNotForward (opt for ent,opt for ed). LCP-CTS R10.1 Boolean (true or false). Default false.
493: /// </summary>
494: public bool PlayAnnoFailNotForward { get; set; }
495:
496: /// <summary>
497: /// MrfPoolID (opt for ent,opt for ed). LCP-CTS R10.0 Integer (0-31) default 0
498: /// </summary>
499: public int MrfPoolID { get; set; }
500:
501: /// <summary>
502: /// Custom120x (opt for ent,opt for ed). LCP-CTS R10.1(COM 3.0.X) Boolean (true or false). Default is false.
503: /// </summary>
504: public bool Custom120x { get; set; }
505:
506: /// <summary/>
507: [ForeignKey("AgcfEndpoint_Id")]
508: public virtual AgcfEndpoint AgcfEndpoint { get; set; }
509:
510: /// <summary/>
511: public virtual ICollection<Subscriber> Subscribers { get; set; }
512:
513: /// <summary/>
514: public DateTime Created { get; set; }
515:
516: /// <summary/>
517: public DateTime Updated { get; set; }
518:
519: /// <summary/>
520: public string UserId { get; set; }
521:
522: ////////////////////////////////////////////////////////////////////////////
523:
524: /// <summary>
525: ///
526: /// </summary>
527: public static string SubPartyId(string partyId)
528: {
529: return partyId;
530: }
531:
532: ////////////////////////////////////////////////////////////////////////////
533:
534: /// <summary>
535: ///
536: /// </summary>
537: public bool IsSip
538: {
539: get
540: {
541: bool isSip;
542:
543: isSip = Ia.Ftn.Cl.Model.Business.Nokia.SubParty.IsSip(this.PrimaryPUIDCPEProfileNumber);
544:
545: return isSip;
546: }
547: }
548:
549: ////////////////////////////////////////////////////////////////////////////
550:
551: /// <summary>
552: ///
553: /// </summary>
554: public bool Equal(SubParty b)
555: {
556: // below: this will not check the Id, Created, Updated fields
557: bool areEqual;
558:
559: //if (this.BatteryBackupAvailable != b.BatteryBackupAvailable) areEqual = false;
560: //else areEqual = true;
561:
562: areEqual = false;
563:
564: return areEqual;
565: }
566:
567: ////////////////////////////////////////////////////////////////////////////
568:
569: /// <summary>
570: ///
571: /// </summary>
572: public bool Update(SubParty updatedSubParty)
573: {
574: // below: this will not update Id, Created
575: bool updated;
576:
577: updated = false;
578:
579: if (this.PartyId != updatedSubParty.PartyId) { this.PartyId = updatedSubParty.PartyId; updated = true; }
580: if (this.DisplayName != updatedSubParty.DisplayName) { this.DisplayName = updatedSubParty.DisplayName; updated = true; }
581: if (this.Category != updatedSubParty.Category) { this.Category = updatedSubParty.Category; updated = true; }
582: if (this.NewPartyId != updatedSubParty.NewPartyId) { this.NewPartyId = updatedSubParty.NewPartyId; updated = true; }
583: if (this.PrimaryPUID != updatedSubParty.PrimaryPUID) { this.PrimaryPUID = updatedSubParty.PrimaryPUID; updated = true; }
584: if (this.NewPrimaryPUID != updatedSubParty.NewPrimaryPUID) { this.NewPrimaryPUID = updatedSubParty.NewPrimaryPUID; updated = true; }
585: if (this.PrimaryPUIDDomainRequired != updatedSubParty.PrimaryPUIDDomainRequired) { this.PrimaryPUIDDomainRequired = updatedSubParty.PrimaryPUIDDomainRequired; updated = true; }
586: if (this.PrimaryPUIDCPEProfileNumber != updatedSubParty.PrimaryPUIDCPEProfileNumber) { this.PrimaryPUIDCPEProfileNumber = updatedSubParty.PrimaryPUIDCPEProfileNumber; updated = true; }
587: if (this.PrimaryPUIDFlashable != updatedSubParty.PrimaryPUIDFlashable) { this.PrimaryPUIDFlashable = updatedSubParty.PrimaryPUIDFlashable; updated = true; }
588: if (this.AssocOtasRealm != updatedSubParty.AssocOtasRealm) { this.AssocOtasRealm = updatedSubParty.AssocOtasRealm; updated = true; }
589: if (this.NetworkProfileName != updatedSubParty.NetworkProfileName) { this.NetworkProfileName = updatedSubParty.NetworkProfileName; updated = true; }
590: if (this.NetworkProfileVersion != updatedSubParty.NetworkProfileVersion) { this.NetworkProfileVersion = updatedSubParty.NetworkProfileVersion; updated = true; }
591: if (this.ServiceProfileName != updatedSubParty.ServiceProfileName) { this.ServiceProfileName = updatedSubParty.ServiceProfileName; updated = true; }
592: if (this.ServiceProfileVersion != updatedSubParty.ServiceProfileVersion) { this.ServiceProfileVersion = updatedSubParty.ServiceProfileVersion; updated = true; }
593: if (this.IsReducedServiceProfile != updatedSubParty.IsReducedServiceProfile) { this.IsReducedServiceProfile = updatedSubParty.IsReducedServiceProfile; updated = true; }
594: if (this.CallLimit != updatedSubParty.CallLimit) { this.CallLimit = updatedSubParty.CallLimit; updated = true; }
595: if (this.ServiceSuspension != updatedSubParty.ServiceSuspension) { this.ServiceSuspension = updatedSubParty.ServiceSuspension; updated = true; }
596: if (this.OriginationSuspension != updatedSubParty.OriginationSuspension) { this.OriginationSuspension = updatedSubParty.OriginationSuspension; updated = true; }
597: if (this.TerminationSuspension != updatedSubParty.TerminationSuspension) { this.TerminationSuspension = updatedSubParty.TerminationSuspension; updated = true; }
598: if (this.SuspensionNotification != updatedSubParty.SuspensionNotification) { this.SuspensionNotification = updatedSubParty.SuspensionNotification; updated = true; }
599: if (this.UserOrigSuspension != updatedSubParty.UserOrigSuspension) { this.UserOrigSuspension = updatedSubParty.UserOrigSuspension; updated = true; }
600: if (this.UserTermSuspension != updatedSubParty.UserTermSuspension) { this.UserTermSuspension = updatedSubParty.UserTermSuspension; updated = true; }
601: if (this.AssocWpifRealm != updatedSubParty.AssocWpifRealm) { this.AssocWpifRealm = updatedSubParty.AssocWpifRealm; updated = true; }
602: if (this.IddPrefix != updatedSubParty.IddPrefix) { this.IddPrefix = updatedSubParty.IddPrefix; updated = true; }
603: if (this.AlternateFsdbFqdn != updatedSubParty.AlternateFsdbFqdn) { this.AlternateFsdbFqdn = updatedSubParty.AlternateFsdbFqdn; updated = true; }
604: if (this.SharedHssData != updatedSubParty.SharedHssData) { this.SharedHssData = updatedSubParty.SharedHssData; updated = true; }
605: if (this.Pin != updatedSubParty.Pin) { this.Pin = updatedSubParty.Pin; updated = true; }
606: if (this.MsnCapability != updatedSubParty.MsnCapability) { this.MsnCapability = updatedSubParty.MsnCapability; updated = true; }
607: if (this.VideoProhibit != updatedSubParty.VideoProhibit) { this.VideoProhibit = updatedSubParty.VideoProhibit; updated = true; }
608: if (this.MaxFwdHops != updatedSubParty.MaxFwdHops) { this.MaxFwdHops = updatedSubParty.MaxFwdHops; updated = true; }
609: if (this.CsdFlavor != updatedSubParty.CsdFlavor) { this.CsdFlavor = updatedSubParty.CsdFlavor; updated = true; }
610: if (this.CsdDynamic != updatedSubParty.CsdDynamic) { this.CsdDynamic = updatedSubParty.CsdDynamic; updated = true; }
611: if (this.SipErrorTableId != updatedSubParty.SipErrorTableId) { this.SipErrorTableId = updatedSubParty.SipErrorTableId; updated = true; }
612: if (this.TreatmentTableId != updatedSubParty.TreatmentTableId) { this.TreatmentTableId = updatedSubParty.TreatmentTableId; updated = true; }
613: if (this.Locale != updatedSubParty.Locale) { this.Locale = updatedSubParty.Locale; updated = true; }
614: if (this.CliPrefixList != updatedSubParty.CliPrefixList) { this.CliPrefixList = updatedSubParty.CliPrefixList; updated = true; }
615: if (this.IsGroupCPE != updatedSubParty.IsGroupCPE) { this.IsGroupCPE = updatedSubParty.IsGroupCPE; updated = true; }
616: if (this.Receive181Mode != updatedSubParty.Receive181Mode) { this.Receive181Mode = updatedSubParty.Receive181Mode; updated = true; }
617: if (this.CcNdcLength != updatedSubParty.CcNdcLength) { this.CcNdcLength = updatedSubParty.CcNdcLength; updated = true; }
618: if (this.MaxActiveCalls != updatedSubParty.MaxActiveCalls) { this.MaxActiveCalls = updatedSubParty.MaxActiveCalls; updated = true; }
619: if (this.CallingPartyCategory != updatedSubParty.CallingPartyCategory) { this.CallingPartyCategory = updatedSubParty.CallingPartyCategory; updated = true; }
620: if (this.PublicUID1 != updatedSubParty.PublicUID1) { this.PublicUID1 = updatedSubParty.PublicUID1; updated = true; }
621: if (this.PublicUID2 != updatedSubParty.PublicUID2) { this.PublicUID2 = updatedSubParty.PublicUID2; updated = true; }
622: if (this.PublicUID3 != updatedSubParty.PublicUID3) { this.PublicUID3 = updatedSubParty.PublicUID3; updated = true; }
623: if (this.PublicUID4 != updatedSubParty.PublicUID4) { this.PublicUID4 = updatedSubParty.PublicUID4; updated = true; }
624: if (this.PublicUID5 != updatedSubParty.PublicUID5) { this.PublicUID5 = updatedSubParty.PublicUID5; updated = true; }
625: if (this.PublicUID6 != updatedSubParty.PublicUID6) { this.PublicUID6 = updatedSubParty.PublicUID6; updated = true; }
626: if (this.PublicUID7 != updatedSubParty.PublicUID7) { this.PublicUID7 = updatedSubParty.PublicUID7; updated = true; }
627: if (this.PublicUID8 != updatedSubParty.PublicUID8) { this.PublicUID8 = updatedSubParty.PublicUID8; updated = true; }
628: if (this.PublicUID9 != updatedSubParty.PublicUID9) { this.PublicUID9 = updatedSubParty.PublicUID9; updated = true; }
629: if (this.PublicUID1DomainRequired != updatedSubParty.PublicUID1DomainRequired) { this.PublicUID1DomainRequired = updatedSubParty.PublicUID1DomainRequired; updated = true; }
630: if (this.PublicUID2DomainRequired != updatedSubParty.PublicUID2DomainRequired) { this.PublicUID2DomainRequired = updatedSubParty.PublicUID2DomainRequired; updated = true; }
631: if (this.PublicUID3DomainRequired != updatedSubParty.PublicUID3DomainRequired) { this.PublicUID3DomainRequired = updatedSubParty.PublicUID3DomainRequired; updated = true; }
632: if (this.PublicUID4DomainRequired != updatedSubParty.PublicUID4DomainRequired) { this.PublicUID4DomainRequired = updatedSubParty.PublicUID4DomainRequired; updated = true; }
633: if (this.PublicUID5DomainRequired != updatedSubParty.PublicUID5DomainRequired) { this.PublicUID5DomainRequired = updatedSubParty.PublicUID5DomainRequired; updated = true; }
634: if (this.PublicUID6DomainRequired != updatedSubParty.PublicUID6DomainRequired) { this.PublicUID6DomainRequired = updatedSubParty.PublicUID6DomainRequired; updated = true; }
635: if (this.PublicUID7DomainRequired != updatedSubParty.PublicUID7DomainRequired) { this.PublicUID7DomainRequired = updatedSubParty.PublicUID7DomainRequired; updated = true; }
636: if (this.PublicUID8DomainRequired != updatedSubParty.PublicUID8DomainRequired) { this.PublicUID8DomainRequired = updatedSubParty.PublicUID8DomainRequired; updated = true; }
637: if (this.PublicUID9DomainRequired != updatedSubParty.PublicUID9DomainRequired) { this.PublicUID9DomainRequired = updatedSubParty.PublicUID9DomainRequired; updated = true; }
638: if (this.WildCardPUIDStr != updatedSubParty.WildCardPUIDStr) { this.WildCardPUIDStr = updatedSubParty.WildCardPUIDStr; updated = true; }
639: if (this.AllowCustomAnnouncement != updatedSubParty.AllowCustomAnnouncement) { this.AllowCustomAnnouncement = updatedSubParty.AllowCustomAnnouncement; updated = true; }
640: if (this.PtySpareLong1 != updatedSubParty.PtySpareLong1) { this.PtySpareLong1 = updatedSubParty.PtySpareLong1; updated = true; }
641: if (this.PtySpareString != updatedSubParty.PtySpareString) { this.PtySpareString = updatedSubParty.PtySpareString; updated = true; }
642: if (this.PtySpareString2 != updatedSubParty.PtySpareString2) { this.PtySpareString2 = updatedSubParty.PtySpareString2; updated = true; }
643: if (this.PtySpareShort1 != updatedSubParty.PtySpareShort1) { this.PtySpareShort1 = updatedSubParty.PtySpareShort1; updated = true; }
644: if (this.PtySpareShort2 != updatedSubParty.PtySpareShort2) { this.PtySpareShort2 = updatedSubParty.PtySpareShort2; updated = true; }
645: if (this.PtySpareBool1 != updatedSubParty.PtySpareBool1) { this.PtySpareBool1 = updatedSubParty.PtySpareBool1; updated = true; }
646: if (this.PtySpareBool2 != updatedSubParty.PtySpareBool2) { this.PtySpareBool2 = updatedSubParty.PtySpareBool2; updated = true; }
647: if (this.PtySpareBool3 != updatedSubParty.PtySpareBool3) { this.PtySpareBool3 = updatedSubParty.PtySpareBool3; updated = true; }
648: if (this.PtySpareBool4 != updatedSubParty.PtySpareBool4) { this.PtySpareBool4 = updatedSubParty.PtySpareBool4; updated = true; }
649: if (this.PtySpareBool5 != updatedSubParty.PtySpareBool5) { this.PtySpareBool5 = updatedSubParty.PtySpareBool5; updated = true; }
650: if (this.PtySpareBool6 != updatedSubParty.PtySpareBool6) { this.PtySpareBool6 = updatedSubParty.PtySpareBool6; updated = true; }
651: if (this.PtySpareBool7 != updatedSubParty.PtySpareBool7) { this.PtySpareBool7 = updatedSubParty.PtySpareBool7; updated = true; }
652: if (this.PtySpareBool8 != updatedSubParty.PtySpareBool8) { this.PtySpareBool8 = updatedSubParty.PtySpareBool8; updated = true; }
653: if (this.TerminatingTableId != updatedSubParty.TerminatingTableId) { this.TerminatingTableId = updatedSubParty.TerminatingTableId; updated = true; }
654: if (this.AllowNonSipTelUri != updatedSubParty.AllowNonSipTelUri) { this.AllowNonSipTelUri = updatedSubParty.AllowNonSipTelUri; updated = true; }
655: if (this.LocationType != updatedSubParty.LocationType) { this.LocationType = updatedSubParty.LocationType; updated = true; }
656: if (this.RncID != updatedSubParty.RncID) { this.RncID = updatedSubParty.RncID; updated = true; }
657: if (this.LteMcc != updatedSubParty.LteMcc) { this.LteMcc = updatedSubParty.LteMcc; updated = true; }
658: if (this.LteMnc != updatedSubParty.LteMnc) { this.LteMnc = updatedSubParty.LteMnc; updated = true; }
659: if (this.LteTac != updatedSubParty.LteTac) { this.LteTac = updatedSubParty.LteTac; updated = true; }
660: if (this.MarketSID != updatedSubParty.MarketSID) { this.MarketSID = updatedSubParty.MarketSID; updated = true; }
661: if (this.SwitchNumber != updatedSubParty.SwitchNumber) { this.SwitchNumber = updatedSubParty.SwitchNumber; updated = true; }
662: if (this.CallsToWebUserProhibited != updatedSubParty.CallsToWebUserProhibited) { this.CallsToWebUserProhibited = updatedSubParty.CallsToWebUserProhibited; updated = true; }
663: if (this.IMSI != updatedSubParty.IMSI) { this.IMSI = updatedSubParty.IMSI; updated = true; }
664: if (this.IMSNotSupported != updatedSubParty.IMSNotSupported) { this.IMSNotSupported = updatedSubParty.IMSNotSupported; updated = true; }
665: if (this.ValidateCellID != updatedSubParty.ValidateCellID) { this.ValidateCellID = updatedSubParty.ValidateCellID; updated = true; }
666: if (this.OperatorID != updatedSubParty.OperatorID) { this.OperatorID = updatedSubParty.OperatorID; updated = true; }
667: if (this.HomeMTA != updatedSubParty.HomeMTA) { this.HomeMTA = updatedSubParty.HomeMTA; updated = true; }
668: if (this.ForwardDenyNumbers != updatedSubParty.ForwardDenyNumbers) { this.ForwardDenyNumbers = updatedSubParty.ForwardDenyNumbers; updated = true; }
669: if (this.PlayAnnoFailNotForward != updatedSubParty.PlayAnnoFailNotForward) { this.PlayAnnoFailNotForward = updatedSubParty.PlayAnnoFailNotForward; updated = true; }
670: if (this.MrfPoolID != updatedSubParty.MrfPoolID) { this.MrfPoolID = updatedSubParty.MrfPoolID; updated = true; }
671: if (this.Custom120x != updatedSubParty.Custom120x) { this.Custom120x = updatedSubParty.Custom120x; updated = true; }
672:
673: if (this.AgcfEndpoint != updatedSubParty.AgcfEndpoint) { this.AgcfEndpoint = updatedSubParty.AgcfEndpoint; updated = true; }
674:
675: if (this.UserId != updatedSubParty.UserId) { this.UserId = updatedSubParty.UserId; updated = true; }
676:
677: if (updated) this.Updated = DateTime.UtcNow.AddHours(3);
678:
679: return updated;
680: }
681:
682: ////////////////////////////////////////////////////////////////////////////
683: ////////////////////////////////////////////////////////////////////////////
684: }
685:
686: ////////////////////////////////////////////////////////////////////////////
687: ////////////////////////////////////////////////////////////////////////////
688: }
- Mouse (Ia.Cl.Model) : Windows mouse movements and properties control support class.
- Winapi (Ia.Cl.Model) : WINAPI click events support class.
- ApplicationOperator (Ia.Cl.Model) : ApplicationOperator
- Access (Ia.Ftn.Cl.Model.Business) : Access support class for Fixed Telecommunications Network (FTN) business model.
- Address (Ia.Ftn.Cl.Model.Business) : Address Framework class for Fixed Telecommunications Network (FTN) business model.
- Administration (Ia.Ftn.Cl.Model.Business) : Administration support class of Fixed Telecommunications Network (FTN) business model.
- Default (Ia.Ftn.Cl.Model.Business.Application) : Default Application network information support class for the Fixed Telecommunications Network business model
- Authority (Ia.Ftn.Cl.Model.Business) : Authority support class of Fixed Telecommunications Network (FTN) business model.
- Configuration (Ia.Ftn.Cl.Model.Business) : Configuration Framework class for Fixed Telecommunications Network (FTN) business model.
- Contact (Ia.Ftn.Cl.Model.Business) : Contact support class of Fixed Telecommunications Network (FTN) business model.
- Default (Ia.Ftn.Cl.Model.Business) : Default general support class of Fixed Telecommunications Network (FTN) business model.
- Axe (Ia.Ftn.Cl.Model.Business.Ericsson) : Ericsson AXE support class of Fixed Telecommunications Network (FTN) business model.
- Subscriber (Ia.Ftn.Cl.Model.Business.Ericsson) : AXE Subscriber support class for Fixed Telecommunications Network (FTN) business model.
- Heartbeat (Ia.Ftn.Cl.Model.Business) : Heartbeat information support class for the Fixed Telecommunications Network business model
- Asbr (Ia.Ftn.Cl.Model.Business.Huawei) : AGCF Users (ASBR) support class for Huawei's Fixed Telecommunications Network (FTN) business model.
- Board (Ia.Ftn.Cl.Model.Business.Huawei) : Huawei's Board support class of Fixed Telecommunications Network (FTN) business model.
- Default (Ia.Ftn.Cl.Model.Business.Huawei) : Defaul general support class for Huawei's Fixed Telecommunications Network (FTN) business model.
- Dev (Ia.Ftn.Cl.Model.Business.Huawei) : Huawei's Dev support class of Fixed Telecommunications Network (FTN) business model.
- Ems (Ia.Ftn.Cl.Model.Business.Huawei) : Element Management System (EMS) support class for Huawei's Fixed Telecommunications Network (FTN) business model.
- Ims (Ia.Ftn.Cl.Model.Business.Huawei) : Fixed Telecommunications Network's Operations Support System Management Intranet (FTN OSS) support class for Huawei's Fixed Telecommunications Network (FTN) business model
- Mgw (Ia.Ftn.Cl.Model.Business.Huawei) : Media Gateway (MGW) support class for Huawei's Fixed Telecommunications Network (FTN) business model.
- Nce (Ia.Ftn.Cl.Model.Business.Huawei) : Fixed Telecommunications Network's Operations Support System Management Intranet (FTN OSS) support class for Huawei's Fixed Telecommunications Network (FTN) business model
- OntSipInfo (Ia.Ftn.Cl.Model.Business.Huawei) : Huawei's EMS ONT SIP Info support class of Fixed Telecommunications Network (FTN) business model.
- Ont (Ia.Ftn.Cl.Model.Business.Huawei) : Huawei's Ont support class of Fixed Telecommunications Network (FTN) business model.
- Onu (Ia.Ngn.Cl.Model.Business.Huawei) : Huawei's ONU support class of Next Generation Network'a (NGN's) business model.
- Owsbr (Ia.Ftn.Cl.Model.Business.Huawei) : Huawei's OwSbr Entity Framework class for Fixed Telecommunications Network (FTN) business model.
- Port (Ia.Ftn.Cl.Model.Business.Huawei) : Huawei's Port support class of Fixed Telecommunications Network (FTN) business model.
- Sbr (Ia.Ftn.Cl.Model.Business.Huawei) : Huawei's Sbr Entity Framework class for Fixed Telecommunications Network (FTN) business model.
- Seruattr (Ia.Ftn.Cl.Model.Business.Huawei) : SERUATTR Signaling Service Processing System (SPS) support class for Huawei's Fixed Telecommunications Network (FTN) business model.
- SoftX (Ia.Ftn.Cl.Model.Business.Huawei) : U2020 Northbound Interface IP (SoftX) support class for Huawei's Fixed Telecommunications Network (FTN) business model.
- Sps (Ia.Ftn.Cl.Model.Business.Huawei) : Signaling Service Processing System (SPS) support class for Huawei's Fixed Telecommunications Network (FTN) business model.
- Vag (Ia.Ftn.Cl.Model.Business.Huawei) : Huawei's EMS VAG Entity Framework class for Fixed Telecommunications Network (FTN) business model.
- VoipPstnUser (Ia.Ftn.Cl.Model.Business.Huawei) : Huawei's EMS VOIP PSTN User support class of Fixed Telecommunications Network (FTN) business model.
- Ims (Ia.Ftn.Cl.Model.Business) : Fixed Telecommunications Network's Operations Support System Management Intranet (FTN OSS) support class for Fixed Telecommunications Network (FTN) business model
- Ip (Ia.Ftn.Cl.Model.Business) : IP support class of Fixed Telecommunications Network (FTN) business model.
- Mail (Ia.Ftn.Cl.Model.Business) : Mail process support class of Fixed Telecommunications Network (FTN) business model.
- Default (Ia.Ftn.Cl.Model.Business.Maintenance) : Default maintenance network information support class for the Fixed Telecommunications Network business model
- Find (Ia.Ftn.Cl.Model.Business.Maintenance) : Find subscriber and network information support class for the Fixed Telecommunications Network business model
- Script (Ia.Ftn.Cl.Model.Business.Maintenance) : Script support class for Fixed Telecommunications Network (FTN) class library model.
- Task (Ia.Ftn.Cl.Model.Business.Maintenance) : Execute backend task support class for the Fixed Telecommunications Network business model
- DatabaseInformation (Ia.Ftn.Mdaa.Cl.Model.Business) : DatabaseInformation support class for Ministry Database Analysis Application business model.
- Default (Ia.Ftn.Cl.Model.Business.Mdaa) : Default mdaa network information support class for the Fixed Telecommunications Network business model
- MinistryDatabase (Ia.Ftn.Cl.Model.Business.Mdaa) : MinistryDatabase support class for Fixed Telecommunications Network (FTN) business model.
- TableInformation (Ia.Ftn.Mdaa.Cl.Model.Business) : TableInformation support class for Ministry Database Analysis Application business model.
- Migration (Ia.Ftn.Cl.Model.Business) : Migration support class of Fixed Telecommunications Network (FTN) business model.
- Msmq (Ia.Ftn.Cl.Model.Business) : MSMQ support class for Fixed Telecommunications Network (FTN) business model.
- NetworkDesignDocument (Ia.Ftn.Cl.Model.Business) : Network Design Document support class for Fixed Telecommunications Network (FTN) business model.
- AgcfEndpoint (Ia.Ftn.Cl.Model.Business.Nokia) : AGCF Endpoint support class for Nokia's Fixed Telecommunications Network (FTN) business model.
- AgcfGatewayRecord (Ia.Ftn.Cl.Model.Business.Nokia) : AGCF Gateway Records support class for Nokia's Fixed Telecommunications Network (FTN) business model.
- AgcfGatewayTable (Ia.Ftn.Cl.Model.Business.Nokia) : AGCF Gateway Table support class for Nokia's Fixed Telecommunications Network (FTN) business model.
- AmsTransaction (Ia.Ftn.Cl.Model.Nokia.Business) : Nokia AmsTransaction Entity Framework class for Fixed Telecommunications Network (FTN) business model.
- Ams (Ia.Ftn.Cl.Model.Business.Nokia) : Access Management System (AMS) support class for Nokia's Fixed Telecommunications Network (FTN) business model.
- Ims (Ia.Ftn.Cl.Model.Business.Nokia) : Fixed Telecommunications Network's Operations Support System Management Intranet (FTN OSS) support class for Nokia's Fixed Telecommunications Network (FTN) business model.
- OntOntPots (Ia.Ftn.Cl.Model.Business.Nokia) : ONT-ONTPOTS support class of Fixed Telecommunications Network (FTN) Nokia business model.
- OntServiceHsi (Ia.Ngn.Cl.Model.Business.Nokia) : ONT-SERVICEHSI support class of Next Generation Network'a (NGN's) Nokia business model.
- OntServiceVoip (Ia.Ftn.Cl.Model.Business.Nokia) : ONT-SERVICEVOIP support class of Fixed Telecommunications Network (FTN) Nokia business model.
- Ont (Ia.Ftn.Cl.Model.Business.Nokia) : ONT support class of Fixed Telecommunications Network (FTN) Nokia business model.
- Sdc (Ia.Ftn.Cl.Model.Business.Nokia) : Fixed Telecommunications Network's Operations Support System Management Intranet (FTN OSS) support class for Nokia's Fixed Telecommunications Network (FTN) business model.
- SubParty (Ia.Ftn.Cl.Model.Business.Nokia) : SubParty support class for Nokia's Fixed Telecommunications Network (FTN) business model.
- Subscriber (Ia.Ftn.Cl.Model.Business.Nokia) : Subscriber support class for Nokia's Fixed Telecommunications Network (FTN) business model.
- Procedure (Ia.Ftn.Cl.Model.Business) : Provision support class of Fixed Telecommunications Network (FTN) business model.
- Provision (Ia.Ftn.Cl.Model.Business) : Provision support class of Fixed Telecommunications Network (FTN) business model.
- Report (Ia.Ftn.Cl.Model.Business) : Report support class of Fixed Telecommunications Network (FTN) business model.
- Secretary (Ia.Ftn.Cl.Model.Business) : Secretary support class of Fixed Telecommunications Network (FTN) business model.
- ServiceAddress (Ia.Ftn.Cl.Model.Business) : ServiceAddress Framework class for Fixed Telecommunications Network (FTN) business model.
- ServiceRequestAdministrativeIssue (Ia.Ftn.Cl.Model.Business) : Service Request Administrative Issue support class of Fixed Telecommunications Network (FTN) business model.
- ServiceRequestHistory (Ia.Ftn.Cl.Model.Business) : Service Request History support class of Fixed Telecommunications Network (FTN) business model.
- ServiceRequestHsi (Ia.Ngn.Cl.Model.Business) : Service Request Hsi support class of Next Generation Network'a (NGN's) business model.
- ServiceRequestOntDetail (Ia.Ftn.Cl.Model.Business) : Service Request Ont Detail support class of Fixed Telecommunications Network (FTN) business model.
- ServiceRequestOnt (Ia.Ftn.Cl.Model.Business) : Service Request Ont support class of Fixed Telecommunications Network (FTN) business model.
- ServiceRequestService (Ia.Ftn.Cl.Model.Business) : Service Request Service support class of Fixed Telecommunications Network (FTN) business model.
- ServiceRequestStatisticalVariable (Ia.Ftn.Cl.Model.Business) : ServiceRequestStatisticalVariable support class of Fixed Telecommunications Network (FTN) business model.
- ServiceRequestType (Ia.Ftn.Cl.Model.Business) : Service Request Type support class of Fixed Telecommunications Network (FTN) business model.
- ServiceRequest (Ia.Ftn.Cl.Model.Business) : Service Request support class of Fixed Telecommunications Network (FTN) business model.
- ServiceSerialRequestService (Ia.Ftn.Cl.Model.Business) : Service Serial Request Service support class of Fixed Telecommunications Network (FTN) business model.
- ServiceServiceRequestOnt (Ia.Ftn.Cl.Model.Business) : ServiceServiceRequestOnt support class for Fixed Telecommunications Network (FTN) business model.
- Service (Ia.Ftn.Cl.Model.Business) : Service support class of Fixed Telecommunications Network (FTN) business model.
- Service2 (Ia.Ftn.Cl.Model.Business) : Service Entity Framework class for Fixed Telecommunications Network (FTN) business model.
- Ewsd (Ia.Ftn.Cl.Model.Business.Siemens) : Nokia's Siemens EWSD support class of Fixed Telecommunications Network (FTN) business model.
- Subscriber (Ia.Ftn.Cl.Model.Business.Siemens) : EWSD Subscriber support class for Fixed Telecommunications Network (FTN) business model.
- Transction (Ia.Ftn.Cl.Model.Business) : Transction support class of Fixed Telecommunications Network (FTN) business model.
- Axe (Ia.Ftn.Cl.Model.Client.Ericsson) : Ericsson's AXE support class for Ericsson's PSTN Exchange Migration to Fixed Telecommunications Network (FTN) client model.
- Ems (Ia.Ftn.Cl.Model.Client.Huawei) : Fixed Telecommunications Network's Operations Support System Management Intranet (FTN OSS) client support class for Huawei's Fixed Telecommunications Network (FTN) EMS client model.
- Ims (Ia.Ftn.Cl.Model.Client.Huawei) : Fixed Telecommunications Network's Operations Support System Management Intranet (FTN OSS) client support class for Huawei's Fixed Telecommunications Network (FTN) client model.
- SoftX (Ia.Ftn.Cl.Model.Client.Huawei) : U2020 Northbound Interface IP (SoftX) support class for Huawei's Fixed Telecommunications Network (FTN) client model.
- Sps (Ia.Ftn.Cl.Model.Client.Huawei) : Signaling Service Processing System (SPS) support class for Huawei's Fixed Telecommunications Network (FTN) SPS client model.
- Ams (Ia.Ftn.Cl.Model.Client.Nokia) : Fixed Telecommunications Network's Operations Support System Management Intranet (FTN OSS) client support class for Nokia's Fixed Telecommunications Network (FTN) AMS client model.
- Ims (Ia.Ftn.Cl.Model.Client.Nokia) : Fixed Telecommunications Network's Operations Support System Management Intranet (FTN OSS) client support class for Nokia's Fixed Telecommunications Network (FTN) client model.
- Sdc (Ia.Ftn.Cl.Model.Client.Nokia) : Fixed Telecommunications Network's Operations Support System Management Intranet (FTN OSS) client support class for Nokia's Fixed Telecommunications Network (FTN) client model.
- Access (Ia.Ftn.Cl.Model.Data) : Access support class for Fixed Telecommunications Network (FTN) data model.
- Administration (Ia.Ftn.Cl.Model.Data) : Administration support class for Fixed Telecommunications Network (FTN) data model.
- Contact (Ia.Ftn.Cl.Model.Data) : Contact Entity Framework class for Fixed Telecommunications Network (FTN) data model.
- Default (Ia.Ftn.Cl.Model.Data) : Default support class for Fixed Telecommunications Network (FTN) data model.
- Axe (Ia.Ftn.Cl.Model.Data.Ericsson) : Ericsson AXE support class of Fixed Telecommunications Network (FTN) data model.
- Subscriber (Ia.Ftn.Cl.Model.Data.Ericsson) : AXE Subscriber support class for Fixed Telecommunications Network (FTN) data model.
- Event (Ia.Ftn.Cl.Model.Data) : Nokia AMS Event support class for Fixed Telecommunications Network (FTN) data model.
- Guide (Ia.Ftn.Cl.Model.Data) : Guide support class for Fixed Telecommunications Network (FTN) data model.
- Help (Ia.Ftn.Cl.Model.Data) : Help class for Fixed Telecommunications Network (FTN) data model.
- Asbr (Ia.Ftn.Cl.Model.Data.Huawei) : AGCF Users (ASBR) support class for Huawei's Fixed Telecommunications Network (FTN) data model.
- Board (Ia.Ftn.Cl.Model.Data.Huawei) : Huawei's Board support class of Fixed Telecommunications Network (FTN) data model.
- Default (Ia.Ftn.Cl.Model.Data.Huawei) : Defaul general support class for Huawei's Fixed Telecommunications Network (FTN) data model.
- Dev (Ia.Ftn.Cl.Model.Data.Huawei) : Huawei's Dev support class of Fixed Telecommunications Network (FTN) data model.
- Ems (Ia.Ftn.Cl.Model.Data.Huawei) : Access Management System (AMS) support class for Huawei's Fixed Telecommunications Network (FTN) data model.
- Ims (Ia.Ftn.Cl.Model.Data.Huawei) : Fixed Telecommunications Network's Operations Support System Management Intranet (FTN OSS) support class for Huawei's Fixed Telecommunications Network (FTN) data model
- Mgw (Ia.Ftn.Cl.Model.Data.Huawei) : Media Gateway (MGW) support class for Huawei's Fixed Telecommunications Network (FTN) data model.
- OntSipInfo (Ia.Ftn.Cl.Model.Data.Huawei) : Huawei's EMS ONT SIP INFO support class of Fixed Telecommunications Network (FTN) data model.
- Ont (Ia.Ftn.Cl.Model.Data.Huawei) : Huawei's Ont support class of Fixed Telecommunications Network (FTN) data model.
- Onu (Ia.Ngn.Cl.Model.Data.Huawei) : Huawei ONU support class for Next Generation Network (NGN) data model.
- Owsbr (Ia.Ftn.Cl.Model.Data.Huawei) : Huawei's Owsbr Entity Framework class for Fixed Telecommunications Network (FTN) data model.
- Port (Ia.Ftn.Cl.Model.Data.Huawei) : Huawei's Port support class of Fixed Telecommunications Network (FTN) data model.
- Sbr (Ia.Ftn.Cl.Model.Data.Huawei) : Huawei's Sbr Entity Framework class for Fixed Telecommunications Network (FTN) data model.
- Seruattr (Ia.Ftn.Cl.Model.Data.Huawei) : SERUATTR Signaling Service Processing System (SPS) support class for Huawei's Fixed Telecommunications Network (FTN) data model.
- SoftX (Ia.Ftn.Cl.Model.Data.Huawei) : U2020 Northbound Interface IP (SoftX) support class for Huawei's Fixed Telecommunications Network (FTN) data model.
- Sps (Ia.Ftn.Cl.Model.Data.Huawei) : Signaling Service Processing System (SPS) support class for Huawei's Fixed Telecommunications Network (FTN) data model.
- Vag (Ia.Ftn.Cl.Model.Data.Huawei) : Huawei's EMS VAG Entity Framework class for Fixed Telecommunications Network (FTN) data model.
- VoipPstnUser (Ia.Ftn.Cl.Model.Data.Huawei) : Huawei's EMS VOIP PSTN User support class of Fixed Telecommunications Network (FTN) data model.
- Ims (Ia.Ftn.Cl.Model.Data) : Fixed Telecommunications Network's Operations Support System Management Intranet (FTN OSS) support class for Fixed Telecommunications Network (FTN) data model
- Mail (Ia.Ftn.Cl.Model.Data) : Mail class for Fixed Telecommunications Network (FTN) data model.
- Cache (Ia.Ngn.Cl.Model.Data.Maintenance) : Cache support class for the Next Generation Network data model
- Find (Ia.Ftn.Cl.Model.Data.Maintenance) : Find subscriber and network information support class for the Fixed Telecommunications Network data model
- MinistryDatabase (Ia.Ftn.Cl.Model.Data) : MinistryDatabase support class for Fixed Telecommunications Network (FTN) data model.
- Migration (Ia.Ftn.Cl.Model.Data) : Migration support class of Fixed Telecommunications Network (FTN) data model.
- Miscellaneous (Ia.Ftn.Cl.Model.Data) : Miscellaneous Entity Framework class for Fixed Telecommunications Network (FTN) data model.
- Msmq (Ia.Ftn.Cl.Model.Data) : MSMQ support class for Fixed Telecommunications Network (FTN) data model.
- NetworkDesignDocument (Ia.Ftn.Cl.Model.Data) : Network Design Document support class for Fixed Telecommunications Network (FTN) data model.
- AgcfEndpoint (Ia.Ftn.Cl.Model.Data.Nokia) : AGCF Endpoint support class for Nokia data model.
- AgcfGatewayRecord (Ia.Ftn.Cl.Model.Data.Nokia) : AGCF Gateway Records support class for Nokia data model.
- AmsTransaction (Ia.Ftn.Cl.Model.Data.Nokia) : Nokia AmsTransaction Entity Framework class for Fixed Telecommunications Network (FTN) data model.
- Ams (Ia.Ftn.Cl.Model.Data.Nokia) : Access Management System (AMS) support class for Nokia data model.
- Default (Ia.Ftn.Cl.Model.Data.Nokia) : Defaul general support class for Nokia's Fixed Telecommunications Network (FTN) data model.
- Ims (Ia.Ftn.Cl.Model.Data.Nokia) : Fixed Telecommunications Network's Operations Support System Management Intranet (FTN OSS) support class for Nokia's Fixed Telecommunications Network (FTN) data model.
- OntOntPots (Ia.Ftn.Cl.Model.Data.Nokia) : ONT-ONTPOTS support class for Fixed Telecommunications Network (FTN) Nokia data model.
- OntServiceHsi (Ia.Ngn.Cl.Model.Data.Nokia) : ONT-SERVICEHSI support class for Next Generation Network (NGN) Nokia data model.
- OntServiceVoip (Ia.Ftn.Cl.Model.Data.Nokia) : ONT-SERVICEVOIP support class for Fixed Telecommunications Network (FTN) Nokia data model.
- Ont (Ia.Ftn.Cl.Model.Data.Nokia) : ONT support class for Fixed Telecommunications Network (FTN) Nokia data model.
- Sdc (Ia.Ftn.Cl.Model.Data.Nokia) : Fixed Telecommunications Network's Operations Support System Management Intranet (FTN OSS) support class for Nokia's Fixed Telecommunications Network (FTN) data model.
- SubParty (Ia.Ftn.Cl.Model.Data.Nokia) : SubParty support class for Nokia's Fixed Telecommunications Network (FTN) data model.
- Subscriber (Ia.Ftn.Cl.Model.Data.Nokia) : Subscriber Entity Framework class for Fixed Telecommunications Network (FTN) data model.
- Pots (Ia.Ftn.Cl.Model.Data) : POTS legacy support class for Fixed Telecommunications Network (FTN) data model.
- Provision (Ia.Ftn.Cl.Model.Data) : Provision support class for Fixed Telecommunications Network (FTN) data model.
- ReportHistory (Ia.Ftn.Cl.Model.Data) : Report History support class for Fixed Telecommunications Network (FTN) data model.
- Report (Ia.Ftn.Cl.Model.Data) : Report support class for Fixed Telecommunications Network (FTN) data model.
- Secretary (Ia.Ftn.Cl.Model.Data) : Secretary support class of Fixed Telecommunications Network (FTN) data model.
- ServiceExemption (Ia.Ftn.Cl.Model.Data) : ServiceExemption Framework class for Fixed Telecommunications Network (FTN) data model.
- ServiceInitialState (Ia.Ngn.Cl.Model.Data) : Service Initial State Framework class for Next Generation Network (NGN) data model.
- ServiceRequestAdministrativeIssue (Ia.Ftn.Cl.Model.Data) : Service Request Administrative Issue support class for Fixed Telecommunications Network (FTN) data model.
- ServiceRequestHistory (Ia.Ftn.Cl.Model.Data) : Service Request History support class for Fixed Telecommunications Network (FTN) data model.
- ServiceRequestHsi (Ia.Ngn.Cl.Model.Data) : Service Request Hsi support class for Next Generation Network (NGN) data model.
- ServiceRequestOntDetail (Ia.Ftn.Cl.Model.Data) : Service Request Ont Detail support class for Fixed Telecommunications Network (FTN) data model.
- ServiceRequestOnt (Ia.Ftn.Cl.Model.Data) : Service Request Ont support class for Fixed Telecommunications Network (FTN) data model.
- ServiceRequestService (Ia.Ftn.Cl.Model.Data) : Service Request Service support class for Fixed Telecommunications Network (FTN) data model.
- ServiceRequestType (Ia.Ftn.Cl.Model.Data) : Service Request Type support class for Fixed Telecommunications Network (FTN) data model.
- ServiceRequest (Ia.Ftn.Cl.Model.Data) : Service Request support class for Fixed Telecommunications Network (FTN) data model.
- Service (Ia.Ftn.Cl.Model.Data) : Service support class for Fixed Telecommunications Network (FTN) data model.
- Service2 (Ia.Ftn.Cl.Model.Data) : Service support class for Fixed Telecommunications Network (FTN) data model.
- Ewsd (Ia.Ftn.Cl.Model.Data.Siemens) : Nokia's Siemens EWSD support class of Fixed Telecommunications Network (FTN) data model.
- Subscriber (Ia.Ftn.Cl.Model.Data.Siemens) : EWSD Subscriber support class for Fixed Telecommunications Network (FTN) data model.
- Staff (Ia.Ftn.Cl.Model.Data) : Staff support class for Fixed Telecommunications Network (FTN) data model.
- Transaction (Ia.Ftn.Cl.Model.Data) : Transaction support class for Fixed Telecommunications Network (FTN) data model.
- Access (Ia.Ftn.Cl.Model) : Access Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
- Contact (Ia.Ftn.Cl.Model) : Contact Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
- AxeSubscriber (Ia.Ftn.Cl.Model.Ericsson) : AXE Subscriber Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
- Event (Ia.Ftn.Cl.Model) : Event Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
- Asbr (Ia.Ftn.Cl.Model.Huawei) : Huawei's AGCF Users (ASBR) Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
- EmsBoard (Ia.Ftn.Cl.Model.Huawei) : Huawei's EMS Board Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
- EmsDev (Ia.Ftn.Cl.Model.Huawei) : Huawei's EMS Dev Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
- Mgw (Ia.Ftn.Cl.Model.Huawei) : Huawei's Media Gateway (MGW) Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
- Msan (Ia.Ngn.Cl.Model.Huawei) : Huawei's Msan Entity Framework class for Next Generation Network (NGN) entity model.
- EmsOntSipInfo (Ia.Ftn.Cl.Model.Huawei) : Huawei's EMS ONT SIP INFO Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
- EmsOnt (Ia.Ftn.Cl.Model.Huawei) : Huawei's EMS Ont Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
- Onu (Ia.Ngn.Cl.Model.Huawei) : Huawei's ONU Entity Framework class for Next Generation Network (NGN) entity model.
- Owsbr (Ia.Ftn.Cl.Model.Huawei) : Huawei's Owsbr Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
- EmsPort (Ia.Ftn.Cl.Model.Huawei) : Huawei's EMS Port Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
- Sbr (Ia.Ftn.Cl.Model.Huawei) : Huawei's Sbr Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
- Seruattr (Ia.Ftn.Cl.Model.Huawei) : SERUATTR Signaling Service Processing System (SPS) support class for Huawei's Fixed Telecommunications Network (FTN) entity model.
- EmsVag (Ia.Ftn.Cl.Model.Huawei) : Huawei's EMS VAG Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
- EmsVoipPstnUser (Ia.Ftn.Cl.Model.Huawei) : Huawei's EMS VOIP PSTN User Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
- Inventory (Ia.Ftn.Cl.Model) : Inventory Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
- LogicalCircuit (Ia.Ngn.Cl.Model) : Logical-Circuit Entity Framework class for Next Generation Network (NGN) entity model.
- Miscellaneous (Ia.Ftn.Cl.Model) : Miscellaneous Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
- NddPon (Ia.Ngn.Cl.Model.NetworkDesignDocument) : Network Design Document support class for Next Generation Network (NGN) entity model.
- AgcfEndpoint (Ia.Ftn.Cl.Model.Nokia) : AGCF Endpoint Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
- AgcfGatewayRecord (Ia.Ftn.Cl.Model.Nokia) : AGCF Gateway Record Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
- AlInitialInstallation (Ia.Ngn.Cl.Model.AlcatelLucent) : Alcatel-Lucent Initial Installation Entity Framework class for Next Generation Network (NGN) entity model.
- AmsTransaction (Ia.Ftn.Cl.Model.Nokia) : Nokia AmsTransaction Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
- SubParty (Ia.Ftn.Cl.Model.Nokia) : SubParty Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
- Subscriber (Ia.Ftn.Cl.Model.Nokia) : Subscriber Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
- OntOntPots (Ia.Ftn.Cl.Model) : ONT-ONTPOTS Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
- OntServiceHsi (Ia.Ngn.Cl.Model) : ONT-SERVICEHSI Entity Framework class for Next Generation Network (NGN) entity model.
- OntServiceVoip (Ia.Ftn.Cl.Model) : ONT-SERVICEVOIP Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
- Ont (Ia.Ftn.Cl.Model) : ONT Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
- ReportHistory (Ia.Ftn.Cl.Model) : Report History Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
- Report (Ia.Ftn.Cl.Model) : Report Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
- ServiceExemption (Ia.Ftn.Cl.Model) : ServiceExemption Framework class for Fixed Telecommunications Network (FTN) entity model.
- ServiceInitialState (Ia.Ngn.Cl.Model) : Service Initial State Entity Framework class for Next Generation Network (NGN) entity model.
- ServiceRequestAdministrativeIssue (Ia.Ftn.Cl.Model) : Service Request Administrative Issue Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
- ServiceRequestHistory (Ia.Ftn.Cl.Model) : Service Request History Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
- ServiceRequestHsi (Ia.Ngn.Cl.Model) : Service Request Hsi Entity Framework class for Next Generation Network (NGN) entity model.
- ServiceRequestOntDetail (Ia.Ftn.Cl.Model) : Service Request Ont Detail Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
- ServiceRequestOnt (Ia.Ftn.Cl.Model) : Service Request Ont Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
- ServiceRequestService (Ia.Ftn.Cl.Model) : Service Request Service Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
- ServiceRequestType (Ia.Ftn.Cl.Model) : Service Request Type Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
- ServiceRequest (Ia.Ftn.Cl.Model) : Service Request Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
- Service2 (Ia.Ftn.Cl.Model) : Service Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
- EwsdSubscriber (Ia.Ftn.Cl.Model.Siemens) : EWSD Subscriber Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
- Staff (Ia.Ftn.Cl.Model) : Staff Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
- Transaction (Ia.Ftn.Cl.Model) : Transaction Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
- Chat (Ia.Ftn.Cl.Model.Telegram) : Telegram Chat/Group/User support class of Fixed Telecommunications Network (FTN) business and data model.
- Access (Ia.Ftn.Cl.Model.Ui) : Access support class for Fixed Telecommunications Network (FTN) ui model.
- Default (Ia.Ftn.Cl.Model.Ui.Administration) : Administration support class for Fixed Telecommunications Network (FTN) ui model.
- Framework (Ia.Ftn.Cl.Model.Ui.Administration) : Network Design Document support class for Fixed Telecommunications Network (FTN) UI model.
- Default (Ia.Ftn.Cl.Model.Ui) : Default support class for Fixed Telecommunications Network (FTN) ui model.
- Subscriber (Ia.Ftn.Cl.Model.Ui.Ericsson) : AXE Subscriber Entity Framework class for Fixed Telecommunications Network (FTN) UI model.
- EmsOnt (Ia.Ftn.Cl.Model.Ui.Huawei) : Huawei's EMS Ont Entity Framework class for Fixed Telecommunications Network (FTN) UI model.
- Sbr (Ia.Ftn.Cl.Model.Ui.Huawei) : Huawei's Sbr Entity Framework class for Fixed Telecommunications Network (FTN) UI model.
- InventoryForDataGridView (Ia.Ftn.Cl.Model.Ui) : Inventory For DataGridView support class for Fixed Telecommunications Network (FTN) ui model.
- Mail (Ia.Ftn.Cl.Model.Ui) : Mail process support class of Fixed Telecommunications Network (FTN) UI model.
- AccessFamilyTypeAreaBlock (Ia.Ftn.Cl.Model.Ui.Maintenance) : Maintenance support class for Fixed Telecommunications Network (FTN) ui model.
- Find (Ia.Ftn.Cl.Model.Ui.Maintenance) : Find subscriber and network information support class for the Fixed Telecommunications Network ui model
- Ams (Ia.Ftn.Cl.Model.Ui.Maintenance.Transaction) : Ams support class for Fixed Telecommunications Network (FTN) ui model.
- Default (Ia.Ftn.Cl.Model.Ui.Maintenance.Report) : Maintenance Report data support class for the Fixed Telecommunications Network ui model
- NetworkDesignDocument (Ia.Ftn.Cl.Model.Ui) : Network Design Document support class for Fixed Telecommunications Network (FTN) UI model.
- AgcfEndpoint (Ia.Ftn.Cl.Model.Ui.Nokia) : AGCF Endpoint Entity Framework class for Fixed Telecommunications Network (FTN) ui model.
- AgcfGatewayRecord (Ia.Ftn.Cl.Model.Ui.Nokia) : AGCF Gateway Record Entity Framework class for Fixed Telecommunications Network (FTN) UI model.
- SubParty (Ia.Ftn.Cl.Model.Ui.Nokia) : SubParty Entity Framework class for Fixed Telecommunications Network (FTN) ui model.
- Subscriber (Ia.Ftn.Cl.Model.Ui.Nokia) : Subscriber Entity Framework class for Fixed Telecommunications Network (FTN) ui model.
- Performance (Ia.Ftn.Cl.Model.Ui) : Performance support class for Fixed Telecommunications Network (FTN) ui model.
- Access (Ia.Ftn.Cl.Model.Ui.Provision) : Access support class for Fixed Telecommunications Network (FTN) ui model.
- ReportAccessServiceRequest (Ia.Ftn.Cl.Model.Ui) : Report Access Service Request support class for Fixed Telecommunications Network (FTN) ui model.
- Report (Ia.Ftn.Cl.Model.Ui) : Report support class for Fixed Telecommunications Network (FTN) ui model.
- ServiceAccessFlatTermId (Ia.Ftn.Cl.Model.Ui) : ServiceAccessFlatTermId support class for Fixed Telecommunications Network (FTN) ui model.
- ServiceCustomerAddressAccessStatisticalAccessName (Ia.Ftn.Cl.Model.Ui) : ServiceRequest ServiceRequestService Access Statistic support class for Fixed Telecommunications Network (FTN) ui model.
- ServiceRequestAdministrativeIssue (Ia.Ftn.Cl.Model.Ui) : Service Request Administrative Issue Entity Framework class for Fixed Telecommunications Network (FTN) UI model.
- ServiceRequestService (Ia.Ftn.Cl.Model.Ui) : Service Request Service Entity Framework class for Fixed Telecommunications Network (FTN) UI model.
- Service2 (Ia.Ftn.Cl.Model.Ui) : Service class for Fixed Telecommunications Network (FTN) UI model.
- Subscriber (Ia.Ftn.Cl.Model.Ui.Siemens) : EWSD Subscriber Entity Framework class for Fixed Telecommunications Network (FTN) UI model.
- Text (Ia.Ftn.Cl.Model.Ui) : Text support class for Fixed Telecommunications Network (FTN) ui model.
- Administration (Ia.Ftn.Wa.Model.Business) : Administration support class for Fixed Telecommunications Network (FTN) web application (Intranet) model.
- Contact (Ia.Ftn.Wa.Model.Business) : Contact support class for Fixed Telecommunications Network (FTN) web application (Intranet) model.
- Default (Ia.Ftn.Wa.Model.Business) : Administration support class for Fixed Telecommunications Network (FTN) web application (Intranet) model.
- Script (Ia.Ftn.Wa.Model.Business.Maintenance) : Script support class for Fixed Telecommunications Network (FTN) web application (Intranet) model.
- AccessController (Ia.Ngn.Ofn.Wa.Api.Model.Controller) : Access API Controller class of Optical Fiber Network (OFN) model.
- EncryptionController (Ia.Ngn.Ofn.Wa.Api.Controller.Cryptography) : Cryptography, Encryption Controller
- Default2Controller (Ia.Ftn.Wa.Api.Model.Controller) : Default API Controller class of Optical Fiber Network (OFN) model.
- MaintenanceController (Ia.Ngn.Ofn.Wa.Api.Model.Controller) : Maintenance API Controller class of Optical Fiber Network (OFN) model.
- ServiceRequestAdministrativeIssueController (Ia.Ngn.Ofn.Wa.Api.Model.Controller) : Service Request Administrative Issue API Controller class of Optical Fiber Network (OFN) model.
- ServiceRequestTypeController (Ia.Ngn.Ofn.Wa.Api.Model.Controller) : Service Request Type API Controller class of Optical Fiber Network (OFN) model.
- ServiceRequestController (Ia.Ngn.Ofn.Wa.Api.Model.Controller) : Service Request API Controller class of Optical Fiber Network (OFN) model.
- ServiceController (Ia.Ngn.Ofn.Wa.Api.Model.Controller) : Service API Controller class of Optical Fiber Network (OFN) model.
- Administration (Ia.Ftn.Wa.Model.Data) : Administration support class for Fixed Telecommunications Network (FTN) web application (Intranet) model.
- Script (Ia.Ftn.Wa.Model.Data) : Script support class for Fixed Telecommunications Network (FTN) web application (Intranet) model.
- Default (Ia.Ftn.Wa.Model.Ui) : Default support class for Fixed Telecommunications Network (FTN) web application (Intranet) model.
- Mouse (Ia.Cl.Model) : Windows mouse movements and properties control support class.
- Winapi (Ia.Cl.Model) : WINAPI click events support class.
- Agent (Ia.Cl.Model) : Agent model
- ApplicationConfiguration (Ia.Cl.Model) : Webhook API Controller class.
- Authentication (Ia.Cl.Model) : Manage and verify user logging and passwords. The administrator will define the user's password and logging website. The service will issue a true of false according to authentication.
- Storage (Ia.Cl.Models.Azure) : Azure Cloud related support functions.
- Default (Ia.Cl.Models.Business.Nfc) : Default NFC Near-Field Communication (NFC) Support Business functions
- Inventory (Ia.Cl.Models.Business.Nfc) : Inventory NFC Near-Field Communication (NFC) Support Business functions
- Tag (Ia.Cl.Models.Business.Nfc) : TAG NFC Near-Field Communication (NFC) Support Business functions
- Country (Ia.Cl.Model) : Country geographic coordinates and standard UN naming conventions.
- Germany (Ia.Cl.Model) : German cities and states.
- Kuwait (Ia.Cl.Model) : Kuwait provinces, cities, and areas.
- SaudiArabia (Ia.Cl.Model) : Saudi Arabia provinces, cities, and areas.
- Encryption (Ia.Cl.Models.Cryptography) : Symmetric Key Algorithm (Rijndael/AES) to encrypt and decrypt data.
- Default (Ia.Cl.Models.Data) : Support class for data model
- Default (Ia.Cl.Models.Data.Nfc) : Default NFC Near-Field Communication (NFC) Support Data functions
- Inventory (Ia.Cl.Models.Data.Nfc) : Inventory NFC Near-Field Communication (NFC) Support Data functions
- Project (Ia.Cl.Models.Nfc.Data) : Project Support class for NFC data model
- Tag (Ia.Cl.Models.Data.Nfc) : TAG NFC Near-Field Communication (NFC) Support Data functions
- Default (Ia.Cl.Models.Db) : Database support class.
- Msmq (Ia.Cl.Models.Db) : MSMQ Database support class. This handles storing and retrieving MSMQ storage.
- MySql (Ia.Model.Db) : MySQL supporting class.
- Object (Ia.Cl.Models.Db) : Object entity class
- Odbc (Ia.Cl.Models.Db) : ODBC support class.
- OleDb (Ia.Cl.Models.Db) : OLEDB support class
- Oracle (Ia.Cl.Models.Db) : Oracle support class.
- Sqlite (Ia.Cl.Models.Db) : SQLite support class.
- SqlServer (Ia.Cl.Models.Db) : SQL Server support class.
- SqlServerCe (Ia.Cs.Db) : SQL Server CE support class.
- Temp (Ia.Cl.Models.Db) : Temporary Storage support class.
- Text (Ia.Cl.Models.Db) : Text Database support class. This handles storing and retrieving text storage.
- Xml (Ia.Cl.Models.Db) : XML Database support class. This handles storing and retrieving XDocument storage.
- Default (Ia.Cl.Model) : General use static class of common functions used by most applications.
- Gv (Ia.Model.Design) : ASP.NET design related support class.
- Enumeration () : Enumeration class. Extends enumeration to class like behaviour.
- Extention () : Extention methods for different class objects.
- File (Ia.Cl.Model) : File manipulation related support class.
- Ftp (Ia.Cl.Model) : A wrapper class for .NET 2.0 FTP
- Location (Ia.Cl.Models.Geography) : Geographic location related function, location, coordinates (latitude, longitude), bearing, degree and radian conversions, CMap value for resolution, and country geographic info-IP from MaxMind.
- GeoIp (Ia.Cl.Model) : GeoIp class of Internet Application project model.
- Gmail (Ia.Cl.Model) : Gmail API support class
- StaticMap (Ia.Cl.Models.Google) : Google support class.
- Drive (Ia.Cl.Models.Google) : Google Drive Directory and File support class.
- Heartbeat (Ia.Cl.Model) : Heartbeat class.
- Hijri (Ia.Cl.Model) : Hijri date handler class.
- HtmlHelper (Ia.Cl.Model) : HtmlHelper for ASP.Net Core.
- Html (Ia.Cl.Model) : Handle HTML encoding, decoding functions.
- Http (Ia.Cl.Model) : Contains functions that relate to posting and receiving data from remote Internet/Intranet pages
- Identity (Ia.Cl.Model) : ASP.NET Identity support class.
- Image (Ia.Cl.Model) : Image processing support class.
- Imap (Ia.Cl.Model) : IMAP support class.
- Language (Ia.Cl.Model) : Language related support class including langauge list and codes.
- Individual (Ia.Cl.Models.Life) : Individual object.
- Main (Ia.Cl.Models.Life) : General base class for life entities. Make it link through delegates to create and update database objects.
- Log (Ia.Cl.Model) : Log file support class.
- Mouse (Ia.Cl.Model) : Windows mouse movements and properties control support class.
- Msmq (Ia.Cl.Model) : MSMQ (Microsoft Message Queuing) Support class.
- Newspaper (Ia.Cl.Model) : Newspaper and publication display format support class.
- Inventory (Ia.Cl.Models.Nfc) : Inventory NFC Near-Field Communication (NFC) Support Entity functions
- Tag (Ia.Cl.Models.Nfc) : TAG NFC Near-Field Communication (NFC) Support Entity functions
- Ocr (Ia.Cl.Model) : Handles OCR operations.
- Packet (Ia.Cl.Model) : Packet model
- PrayerTime (Ia.Cl.Model) : Prayer times support class.
- Punycode (Ia.Cl.Model) : Punycode support class.
- QrCode (Ia.Cl.Model) : QR Code support class.
- Result (Ia.Cl.Model) : Result support class.
- Seo (Ia.Cl.Model) : Search Engine Optimization (SEO) support class.
- DynamicSiteMapProvider () : Sitemap support class.
- Sms (Ia.Cl.Model) : SMS API service support class. Handles sending and recieving SMS messages through the ClickATell.com SMS API Service gateway. Requires subscription.
- Smtp (Ia.Cl.Model) : SMTP send mail server suppot class.
- Socket (Ia.Cl.Model) : Search Engine Optimization (SEO) support class.
- Sound (Ia.Cl.Model) : Sound support class.
- Stopwatch (Ia.Cl.Model) : Stopwatch model
- TagHelper (Ia.Cl.Models.T) : TagHelper for ASP.Net Core.
- Telnet (Ia.Cl.Model) : Telnet communication support class.
- Trace (Ia.Cl.Model) : Trace function to try to identifiy a user using IP addresses, cookies, and session states.
- Default (Ia.Cl.Models.Ui) : Default support UI class
- Upload (Ia.Cl.Model) : Handle file uploading functions.
- Utf8 (Ia.Cl.Model) : Handle UTF8 issues.
- Weather (Ia.Cl.Model) : Weather class
- Winapi (Ia.Cl.Model) : WINAPI click events support class.
- Word (Ia.Cl.Model) : Word object.
- Twitter (Ia.Cl.Model) : Twitter API support class.
- Xml (Ia.Cl.Model) : XML support class.
- Zip (Ia.Cl.Model) : Zip
- Business (Ia.Islamic.Koran.Belief.Model) : Koran Reference Network support functions: Business model
- Default (Ia.Islamic.Cl.Model.Business) : Koran Reference Network Class Library support functions: Business model
- PrayerTime (Ia.Islamic.Koran.Cl.Model.Business) : Prayer Time Business class of Islamic Koran Reference Network project model.
- Word (Ia.Islamic.Cl.Model.Business) : Koran Reference Network Class Library support functions: business model
- DefaultController (Ia.Ngn.Cl.Model.Api.Controller) : Service Suspension API Controller class of Next Generation Network'a (NGN's) model.
- KoranController (Ia.Islamic.Koran.Cl.Model.Api.Controller) : Koran API Controller class of Islamic Koran Reference Network project model.
- PrayerTimeController (Ia.Islamic.Koran.Cl.Model.Api.Controller) : Prayer Time API Controller class of Islamic Koran Reference Network project model.
- Chapter (Ia.Islamic.Cl.Model.Data) : Koran Reference Network Class Library support functions: data model
- Default (Ia.Islamic.Cl.Model.Data) : Koran Reference Network Class Library support functions: Data model
- Koran (Ia.Islamic.Cl.Model.Data) : Koran Reference Network Class Library support functions: data model
- VerseTopic (Ia.Islamic.Cl.Model.Data) : Koran Reference Network Class Library support functions: data model
- Verse (Ia.Islamic.Cl.Model.Data) : Koran Reference Network Class Library support functions: data model
- Koran (Ia.Islamic.Cl.Model.Context) : Koran Reference Network Data Context
- Ef (Ia.Cl.Model) : Entity Framework support function
- Chapter (Ia.Islamic.Cl.Model) : Chapter Koran Reference Network Class Library support functions: Entity model
- Koran (Ia.Islamic.Cl.Model) : Koran Koran Reference Network Class Library support functions: Entity model
- VerseTopic (Ia.Islamic.Cl.Model) : VerseTopic Koran Reference Network Class Library support functions: Entity model
- Verse (Ia.Islamic.Cl.Model) : Verse Koran Reference Network Class Library support functions: Entity model
- WordVerse (Ia.Islamic.Cl.Model) : WordVerse Koran Reference Network Class Library support functions: Entity model
- Word (Ia.Islamic.Cl.Model) : Word Koran Reference Network Class Library support functions: Entity model
- Translation (Ia.Islamic.Cl.Model) : Koran Reference Network Class Library support functions: Data model
- VerseTopicUi (Ia.Islamic.Cl.Model.Ui) : Koran Reference Network Class Library support functions: UI model
- Default (Ia.Islamic.Koran.Wa.Model.Ui) : Koran Reference Network Class Library support functions: UI model
- Default (Ia.Islamic.Koran.Wfa.Model.Business) : Koran Reference Network Windows Form support functions: Business model
- Preparation (Ia.Islamic.Koran.Wfa.Model.Business) : Koran Reference Network Windows Form support functions: Business model
- Default (Ia.Islamic.Koran.Wfa.Model.Data) : Koran Reference Network Windows Form support functions: Data model
- Kanji (Ia.Learning.Cl.Model.Business) : Kanji business support class
- Kanji (Ia.Learning.Cl.Model.Data) : Kanji support class
- Default (Ia.Learning.Cl.Model) : Default data support functions
- MoeBook (Ia.Learning.Cl.Model) : Ministry of Education Books support class for Learning data model.
- Business (Ia.Learning.Kafiya.Model) : Default business support class.
- Data (Ia.Learning.Kafiya.Model) : Default data support class.
- Default (Ia.Learning.Kanji.Model.Business) : Default business support class.
- Default (Ia.Learning.Kanji.Model.Ui) : Default UI support class.
- Newspaper (Ia.Cl.Model) : Newspaper and publication display format support class.
- Default (Ia.Statistics.Cl.Model.Boutiqaat) : Structure of the boutiqaat.com website.
- Default (Ia.Statistics.Cl.Model.Dabdoob) : Structure of the dabdoob.com website.
- Default (Ia.Statistics.Cl.Model.EnglishBookshop) : Structure of the theenglishbookshop.com website.
- Default (Ia.Statistics.Cl.Model.FantasyWorldToys) : Structure of the fantasyworldtoys.com website.
- Default (Ia.Statistics.Cl.Model.HsBookstore) : Structure of the hsbookstore.com website.
- Default (Ia.Statistics.Cl.Model.LuluHypermarket) : Structure of the lulutypermarket.com website.
- Default (Ia.Statistics.Cl.Model.Natureland) : Structure of the natureland.net website.
- Site (Ia.Statistics.Cl.Model) : Site support class for Optical Fiber Network (OFN) data model.
- Default (Ia.Statistics.Cl.Model.SultanCenter) : Structure of the sultan-center.com website.
- Default (Ia.Statistics.Cl.Model.Taw9eel) : Structure of the taw9eel.com website.
- Default (Ia.TentPlay.Cl.Model.Business) : Support class for TentPlay business model
- Default (Ia.TentPlay.Cl.Model.Business.Trek) : Support class for TentPlay Trek business model
- FeatureClassDistanceToCapital (Ia.TentPlay.Cl.Model.Business.Trek) : FeatureClassDistanceToCapital Support class for TentPlay business model
- FeatureClass (Ia.TentPlay.Cl.Model.Business.Trek) : FeatureClass Support class for TentPlay Trek business model
- FeatureDesignation (Ia.TentPlay.Cl.Model.Business.Trek) : FeatureClass Support class for TentPlay Trek business model
- FeatureName (Ia.TentPlay.Cl.Model.Business.Trek) : Support class for TentPlay Trek business model
- Feature (Ia.TentPlay.Cl.Model.Business.Trek) : Feature class for TentPlay Trek business model
- CompanyInformation (Ia.TentPlay.Cl.Model.Data) : CompanyInformation Support class for TentPlay data model
- Default (Ia.TentPlay.Cl.Model.Data) : Support class for TentPlay data model
- ApplicationInformation (Ia.TentPlay.Cl.Model.Data.Trek) : ApplicationInformation Support class for TentPlay Trek data model
- Default (Ia.TentPlay.Cl.Model.Data.Trek) : Default class for TentPlay Trek data model
- FeatureClass (Ia.TentPlay.Cl.Model.Data.Trek) : FeatureClass Support class for TentPlay Trek business model
- FeatureDesignation (Ia.TentPlay.Cl.Model.Data.Trek) : FeatureDesignation Support class for TentPlay Trek data model
- Feature (Ia.TentPlay.Cl.Model.Data.Trek) : Feature Support class for TentPlay entity data
- NgaCountryWaypoint (Ia.TentPlay.Waypoint.Cl.Model.Data) : NgaCountryWaypoint Support class for TentPlay Waypoint entity data
- Score (Ia.TentPlay.Cl.Model.Memorise) : Score entity functions
- FeatureDesignation (Ia.TentPlay.Cl.Model.Trek) : FeatureDesignation Support class for TentPlay Trek entity model
- Feature (Ia.TentPlay.Cl.Model.Trek) : Feature Support class for TentPlay entity model
- ApplicationInformation (Ia.TentPlay.Cl.Model.Memorise) : ApplicationInformation Support class for TentPlay Memorise model
- Default (Ia.TentPlay.Cl.Model.Memorise) : Default class for TentPlay Memorise data model
- German (Ia.TentPlay.Cl.Model.Memorise) : German class
- Kana (Ia.TentPlay.Cl.Model.Memorise) : Kana class
- Kanji (Ia.TentPlay.Cl.Model.Memorise) : Kanji class
- Math (Ia.TentPlay.Cl.Model.Memorise) : Math Class
- MorseCode (Ia.TentPlay.Cl.Model.Memorise) : Morse code class
- PhoneticAlphabet (Ia.TentPlay.Cl.Model.Memorise) : Phonetic Alphabet
- Russian (Ia.TentPlay.Cl.Model.Memorise) : Russian class
- Test (Ia.TentPlay.Cl.Model.Memorise) : Test Class
- Default (Ia.TentPlay.Cl.Model.Ui.Trek) : Default class for TentPlay Trek UI model