Public general use code classes and xml files that we've compiled and used over the years:
Fixed Telecommunications Network's Operations Support System Management Intranet (FTN OSS) support class for Nokia's Fixed Telecommunications Network (FTN) data model.
1: using Microsoft.EntityFrameworkCore;
2: using System;
3: using System.Collections.Generic;
4: using System.Data;
5: using System.Linq;
6: using System.Text;
7:
8: namespace Ia.Ftn.Cl.Models.Data.Nokia
9: {
10: ////////////////////////////////////////////////////////////////////////////
11:
12: /// <summary publish="true">
13: /// Fixed Telecommunications Network's Operations Support System Management Intranet (FTN OSS) support class for Nokia's Fixed Telecommunications Network (FTN) data model.
14: /// </summary>
15: ///
16: /// <remarks>
17: /// Copyright © 2014-2019 Jasem Y. Al-Shamlan (info@ia.com.kw), Integrated Applications - Kuwait. All Rights Reserved.
18: /// </remarks>
19: public class Ims
20: {
21: private static List<string> agcfGatewayRecordIp1sWithinWhichSubPartiesHaveServiceBundle2CategoryList, agcfGatewayRecordIp1sThatIndicateFsdb0List;
22:
23: private static readonly object objectLock = new object();
24:
25: ////////////////////////////////////////////////////////////////////////////
26:
27: /// <summary>
28: ///
29: /// </summary>
30: public Ims() { }
31:
32: ////////////////////////////////////////////////////////////////////////////
33:
34: /// <summary>
35: ///
36: /// </summary>
37: public static List<Ia.Ftn.Cl.Models.Nokia.AgcfGatewayRecord> AgcfGatewayRecordsWithinNddOntListWithWrongSecondaryIpList()
38: {
39: string ip;
40: Dictionary<string, string> agcfGatewayRecordIpToMateExternalIPAddrDictionary;
41: Ia.Ftn.Cl.Models.Nokia.AgcfGatewayRecord agcfGatewayRecord;
42: List<Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Ont> ontList;
43: List<Ia.Ftn.Cl.Models.Nokia.AgcfGatewayRecord> agcfGatewayRecordList, agcfGatewayRecordList2;
44:
45: ontList = Ia.Ftn.Cl.Models.Data.NetworkDesignDocument.OntList;
46: agcfGatewayRecordList = Ia.Ftn.Cl.Models.Data.Nokia.AgcfGatewayRecord.List();
47:
48: agcfGatewayRecordIpToMateExternalIPAddrDictionary = Ia.Ftn.Cl.Models.Data.Nokia.AgcfGatewayRecord.IpToMateExternalIPAddrDictionary;
49:
50: agcfGatewayRecordList2 = new List<Ia.Ftn.Cl.Models.Nokia.AgcfGatewayRecord>();
51:
52: foreach (var v in ontList)
53: {
54: if (agcfGatewayRecordIpToMateExternalIPAddrDictionary.ContainsKey(v.Ip))
55: {
56: ip = agcfGatewayRecordIpToMateExternalIPAddrDictionary[v.Ip];
57:
58: if (ip != v.MgcSecondaryIp)
59: {
60: agcfGatewayRecord = (from gr in agcfGatewayRecordList
61: where gr.IP1 == v.Ip
62: select gr).SingleOrDefault();
63:
64: if (agcfGatewayRecord != null)
65: {
66: agcfGatewayRecordList2.Add(agcfGatewayRecord);
67: }
68: }
69: }
70: }
71:
72: return agcfGatewayRecordList2;
73: }
74:
75: ////////////////////////////////////////////////////////////////////////////
76:
77: /// <summary>
78: ///
79: /// </summary>
80: public static List<string> ServiceWhereSubscriberAlternateOtasRealmGroupNumberDoesNotEqualSubPartyAssocOtasRealmGroupNumberList()
81: {
82: List<string> list;
83:
84: using (var db = new Ia.Ftn.Cl.Db())
85: {
86: list = (from su in db.Subscribers
87: join sp in db.SubParties on su.SubParty.Id equals sp.Id
88: //join ep in db.AgcfEndpoints on sp.AgcfEndpoint.Id equals ep.Id
89: where sp.AssocOtasRealm.Substring(0, 26) != su.AlternateOtasRealm.Substring(0, 26)
90: // "stas-stdn.fsimsgroup0-001." length = 26
91: select su.PartyId).AsNoTracking().ToList();
92: }
93:
94: return list;
95: }
96:
97: ////////////////////////////////////////////////////////////////////////////
98:
99: /// <summary>
100: ///
101: /// </summary>
102: public static void CreateH248SubscriberAndSubPartyAndAgcfEndpoint(Ia.Ftn.Cl.Models.Client.Nokia.Ims ims, int gwId, string service, int flatTermId, Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Ont nddOnt, out string result)
103: {
104: Ia.Ftn.Cl.Models.Business.Nokia.Ims.Response entNgfsSubscriberResponse, entNgfsAgcfEndpointResponse;
105:
106: ims.EntNgfsSubscriberAndNgfsSubPartyV2_H248(service, gwId, nddOnt, out entNgfsSubscriberResponse);
107:
108: if (entNgfsSubscriberResponse.ResultCode == Ia.Ftn.Cl.Models.Client.Nokia.Ims.ResultCode.Successful)
109: {
110: ims.EntNgfsAgcfEndpointV2(service, gwId, flatTermId, nddOnt, out entNgfsAgcfEndpointResponse);
111:
112: // remove number if creation of endpoint failed
113: if (entNgfsAgcfEndpointResponse.ResultCode != Ia.Ftn.Cl.Models.Client.Nokia.Ims.ResultCode.Successful)
114: {
115: ims.DltNgfsSubscriberAndNgfsSubPartyV2(service, nddOnt, out entNgfsSubscriberResponse);
116: }
117: else
118: {
119:
120: }
121: }
122: else
123: {
124: entNgfsAgcfEndpointResponse = new Ia.Ftn.Cl.Models.Business.Nokia.Ims.Response();
125:
126: entNgfsAgcfEndpointResponse.ResultCode = Ia.Ftn.Cl.Models.Client.Nokia.Ims.ResultCode.Null;
127: }
128:
129: result = service + "," + gwId + "," + flatTermId + "," + entNgfsSubscriberResponse.ResultCode.ToString() + "," + entNgfsAgcfEndpointResponse.ResultCode.ToString();
130: }
131:
132: ////////////////////////////////////////////////////////////////////////////
133:
134: /// <summary>
135: ///
136: /// </summary>
137: public static void CreateSipSubscriber(Ia.Ftn.Cl.Models.Client.Nokia.Ims ims, string service, Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Ont nddOnt, out string result)
138: {
139: ims.EntNgfsSubscriberAndNgfsSubPartyV2_Sip(service, nddOnt, out Ia.Ftn.Cl.Models.Business.Nokia.Ims.Response response);
140:
141: result = service + "," + response.ResultCode.ToString();
142: }
143:
144: ////////////////////////////////////////////////////////////////////////////
145:
146: /// <summary>
147: ///
148: /// </summary>
149: public static void Modify248SubscriberAndSubPartyAndDeleteAgcfEndpointToSip(Ia.Ftn.Cl.Models.Client.Nokia.Ims ims, string service, Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Ont nddOnt, out string result)
150: {
151: Ia.Ftn.Cl.Models.Business.Nokia.Ims.Response edNgfsSubscriberResponse, dltNgfsAgcfEndpointResponse;
152:
153: ims.EdNgfsSubscriberAndNgfsSubPartyV2_H248ToSip(service, nddOnt, out edNgfsSubscriberResponse);
154:
155: if (edNgfsSubscriberResponse.ResultCode == Ia.Ftn.Cl.Models.Client.Nokia.Ims.ResultCode.Successful)
156: {
157: ims.DltNgfsAgcfEndpointV2(service, nddOnt, out dltNgfsAgcfEndpointResponse);
158: }
159: else
160: {
161: dltNgfsAgcfEndpointResponse = new Ia.Ftn.Cl.Models.Business.Nokia.Ims.Response();
162:
163: dltNgfsAgcfEndpointResponse.ResultCode = Ia.Ftn.Cl.Models.Client.Nokia.Ims.ResultCode.Null;
164: }
165:
166: result = service + "," + edNgfsSubscriberResponse.ResultCode.ToString() + "," + dltNgfsAgcfEndpointResponse.ResultCode.ToString();
167: }
168:
169: ////////////////////////////////////////////////////////////////////////////
170:
171: /// <summary>
172: ///
173: /// </summary>
174: public static void DeleteAgcfEndpointAndH248SubscriberAndSubParty(Ia.Ftn.Cl.Models.Client.Nokia.Ims ims, string service, Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Ont nddOnt, out string result)
175: {
176: ims.DltNgfsAgcfEndpointV2(service, nddOnt, out Ia.Ftn.Cl.Models.Business.Nokia.Ims.Response dltNgfsAgcfEndpointResponse);
177:
178: ims.DltNgfsSubscriberAndNgfsSubPartyV2(service, nddOnt, out Ia.Ftn.Cl.Models.Business.Nokia.Ims.Response dltNgfsSubscriberResponse);
179:
180: result = service + "," + dltNgfsSubscriberResponse.ResultCode.ToString() + "," + dltNgfsAgcfEndpointResponse.ResultCode.ToString();
181: }
182:
183: ////////////////////////////////////////////////////////////////////////////
184:
185: /// <summary>
186: ///
187: /// </summary>
188: public static void DeleteAgcfEndpointAndH248SubscriberAndSubParty(Ia.Ftn.Cl.Models.Client.Nokia.Ims ims, string service, string primarySwitch, string fsdb, out string result)
189: {
190: ims.DltNgfsAgcfEndpointV2(service, primarySwitch, fsdb, out Ia.Ftn.Cl.Models.Business.Nokia.Ims.Response dltNgfsAgcfEndpointResponse);
191:
192: ims.DltNgfsSubscriberAndNgfsSubPartyV2(service, primarySwitch, fsdb, out Ia.Ftn.Cl.Models.Business.Nokia.Ims.Response dltNgfsSubscriberResponse);
193:
194: result = service + "," + dltNgfsSubscriberResponse.ResultCode.ToString() + "," + dltNgfsAgcfEndpointResponse.ResultCode.ToString();
195: }
196:
197: ////////////////////////////////////////////////////////////////////////////
198:
199: /// <summary>
200: ///
201: /// </summary>
202: public static void DeleteH248SubscriberAndSubParty(Ia.Ftn.Cl.Models.Client.Nokia.Ims ims, string service, Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Ont nddOnt, out string result)
203: {
204: // I use this function sometimes to delete wrong subscriber entries by staff
205:
206: ims.DltNgfsSubscriberAndNgfsSubPartyV2(service, nddOnt, out Ia.Ftn.Cl.Models.Business.Nokia.Ims.Response dltNgfsSubscriberResponse);
207:
208: result = service + "," + dltNgfsSubscriberResponse.ResultCode.ToString();
209: }
210:
211: ////////////////////////////////////////////////////////////////////////////
212:
213: /// <summary>
214: ///
215: /// </summary>
216: public static void DeleteSipSubscriber(Ia.Ftn.Cl.Models.Client.Nokia.Ims ims, string service, Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Ont nddOnt, out string result)
217: {
218: ims.DltNgfsSubscriberAndNgfsSubPartyV2(service, nddOnt, out Ia.Ftn.Cl.Models.Business.Nokia.Ims.Response dltNgfsSubscriberResponse);
219:
220: result = service + "," + dltNgfsSubscriberResponse.ResultCode.ToString();
221: }
222:
223: ////////////////////////////////////////////////////////////////////////////
224: ////////////////////////////////////////////////////////////////////////////
225:
226:
227:
228:
229:
230:
231: ////////////////////////////////////////////////////////////////////////////
232: ////////////////////////////////////////////////////////////////////////////
233:
234: /// <summary>
235: ///
236: /// </summary>
237: public static void UpdateSupplementaryService(Ia.Ftn.Cl.Models.Client.Nokia.Ims ims, string service, Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Ont nddOnt, Ia.Ftn.Cl.Models.Business.Service.SupplementaryService supplementaryService, bool supplementaryServiceState, out string result)
238: {
239: Ia.Ftn.Cl.Models.Business.Nokia.Ims.Response response;
240:
241: switch (supplementaryService)
242: {
243: case (Ia.Ftn.Cl.Models.Business.Service.SupplementaryService.CallerId):
244: {
245: ims.EdNgfsSubscriberV2_CallingLineId(service, nddOnt, supplementaryServiceState, out response);
246: result = service + "," + nddOnt.Access.Name + ",CallerId: " + supplementaryServiceState.ToString().ToLower() + "," + response.ResultCode.ToString();
247: break;
248: }
249: case (Ia.Ftn.Cl.Models.Business.Service.SupplementaryService.AbbriviatedCalling):
250: {
251: ims.EdNgfsSubscriberV2_OneDigitSpeedDial(service, nddOnt, supplementaryServiceState, out response);
252: result = service + "," + nddOnt.Access.Name + ",AbbriviatedCalling: " + supplementaryServiceState.ToString().ToLower() + "," + response.ResultCode.ToString();
253: break;
254: }
255: case (Ia.Ftn.Cl.Models.Business.Service.SupplementaryService.CallForwarding):
256: {
257: ims.EdNgfsSubscriberV2_CallForwardingVari(service, nddOnt, supplementaryServiceState, out response);
258: result = service + "," + nddOnt.Access.Name + ",CallForwarding: " + supplementaryServiceState.ToString().ToLower() + "," + response.ResultCode.ToString();
259: break;
260: }
261: case (Ia.Ftn.Cl.Models.Business.Service.SupplementaryService.CallWaiting):
262: {
263: ims.EdNgfsSubscriberV2_CallWaiting(service, nddOnt, supplementaryServiceState, out Ia.Ftn.Cl.Models.Business.Nokia.Ims.Response subscriberResponse);
264:
265: if (nddOnt.Pon.PonGroup.Olt.IsSip == false) // if H.248
266: {
267: result = service + "," + nddOnt.Access.Name + ",CallWaiting: " + supplementaryServiceState.ToString().ToLower() + ", subscriber: " + subscriberResponse.ResultCode.ToString();
268: }
269: else
270: {
271: ims.EdNgfsAgcfEndpointV2_CallWaiting(service, nddOnt, supplementaryServiceState, out Ia.Ftn.Cl.Models.Business.Nokia.Ims.Response agcfEndpointResponse);
272:
273: result = service + "," + nddOnt.Access.Name + ",CallWaiting: " + supplementaryServiceState.ToString().ToLower() + ", subscriber: " + subscriberResponse.ResultCode.ToString() + ", agcfEndpoint: " + agcfEndpointResponse.ResultCode.ToString();
274: }
275:
276: break;
277: }
278: case (Ia.Ftn.Cl.Models.Business.Service.SupplementaryService.ConferenceCall):
279: {
280: ims.EdNgfsSubscriberV2_ConferenceCall(service, nddOnt, supplementaryServiceState, out response);
281: result = service + "," + nddOnt.Access.Name + ",ConferenceCall: " + supplementaryServiceState.ToString().ToLower() + "," + response.ResultCode.ToString();
282: break;
283: }
284: case (Ia.Ftn.Cl.Models.Business.Service.SupplementaryService.WakeupCall):
285: {
286: ims.EdNgfsSubscriberV2_ReminderCall(service, nddOnt, supplementaryServiceState, out response);
287: result = service + "," + nddOnt.Access.Name + ",WakeupCall: " + supplementaryServiceState.ToString().ToLower() + "," + response.ResultCode.ToString();
288: break;
289: }
290: case (Ia.Ftn.Cl.Models.Business.Service.SupplementaryService.InternationalCallingUserControlled):
291: {
292: ims.EdNgfsSubscriberV2_InternationalCallingUserControlled(service, nddOnt, supplementaryServiceState, out response);
293: result = service + "," + nddOnt.Access.Name + ",InternationalCallingUserControlled: " + supplementaryServiceState.ToString().ToLower() + "," + response.ResultCode.ToString();
294: break;
295: }
296: case (Ia.Ftn.Cl.Models.Business.Service.SupplementaryService.InternationalCalling):
297: {
298: ims.EdNgfsSubscriberV2_InternationalCalling(service, nddOnt, supplementaryServiceState, out response);
299: result = service + "," + nddOnt.Access.Name + ",InternationalCalling: " + supplementaryServiceState.ToString().ToLower() + "," + response.ResultCode.ToString();
300: break;
301: }
302: case (Ia.Ftn.Cl.Models.Business.Service.SupplementaryService.ServiceSuspension):
303: {
304: ims.EdNgfsSubscriberV2_ServiceSuspension(service, nddOnt, supplementaryServiceState, out response);
305: result = service + "," + nddOnt.Access.Name + ",ServiceSuspension: " + supplementaryServiceState.ToString().ToLower() + "," + response.ResultCode.ToString();
306: break;
307: }
308: default:
309: {
310: result = service + ",unknown SupplementaryService: " + supplementaryServiceState.ToString().ToLower();
311: break;
312: }
313: }
314: }
315:
316: ////////////////////////////////////////////////////////////////////////////
317:
318: /// <summary>
319: ///
320: /// </summary>
321: public static void AssignServiceSuspensionStateToServiceSubscriber(Ia.Ftn.Cl.Models.Client.Nokia.Ims ims, string service, Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Ont nddOnt, bool serviceSuspensionState, out string result)
322: {
323: ims.EdNgfsSubscriberV2_ServiceSuspension(service, nddOnt, serviceSuspensionState, out Ia.Ftn.Cl.Models.Business.Nokia.Ims.Response response);
324:
325: result = service + "," + nddOnt.Access.Name + ",service suspension: " + serviceSuspensionState.ToString().ToLower() + "," + response.ResultCode.ToString();
326: }
327:
328: ////////////////////////////////////////////////////////////////////////////
329:
330: /// <summary>
331: ///
332: /// </summary>
333: public static Ia.Ftn.Cl.Models.Nokia.AgcfGatewayRecord ReadAgcfGatewayRecordForGwId(Ia.Ftn.Cl.Models.Client.Nokia.Ims ims, int gwId, out string result)
334: {
335: bool b;
336: string r;
337: Ia.Ftn.Cl.Models.Nokia.AgcfGatewayRecord agcfGatewayRecord;
338:
339: r = string.Empty;
340:
341: agcfGatewayRecord = ims.RtrvNgfsAgcfGatewayRecordV2(gwId, out Ia.Ftn.Cl.Models.Business.Nokia.Ims.Response response);
342:
343: if (response.ResultCode == Ia.Ftn.Cl.Models.Client.Nokia.Ims.ResultCode.Successful || response.ResultCode == Ia.Ftn.Cl.Models.Client.Nokia.Ims.ResultCode.PlxServiceObjectDoesNotExist)
344: {
345: b = Ia.Ftn.Cl.Models.Data.Nokia.Ims.UpdateAgcfGatewayRecord(gwId, response, agcfGatewayRecord, out r);
346: }
347:
348: result = "GatewayRecord: " + gwId + ": " + response.ResultCode.ToString() + ": " + r;
349:
350: return agcfGatewayRecord;
351: }
352:
353: /*
354: ////////////////////////////////////////////////////////////////////////////
355:
356: /// <summary>
357: ///
358: /// </summary>
359: public static void ReadAgcfEndpointListForGwId(Ia.Ftn.Cl.Model.Client.Nokia.Ims ims, int gwId, out string result)
360: {
361: bool b;
362: int agcfGatewayRecordId;
363: Ia.Ftn.Cl.Model.Business.NetworkDesignDocument.Ont nddOnt;
364: Ia.Ftn.Cl.Model.Nokia.AgcfGatewayRecord agcfGatewayRecord;
365: List<Ia.Ftn.Cl.Model.Nokia.AgcfEndpoint> agcfEndpointList;
366:
367: // below: read the AgcfGatewayRecord
368: agcfGatewayRecordId = Ia.Ftn.Cl.Model.Nokia.AgcfGatewayRecord.AgcfGatewayRecordId(Ia.Ftn.Cl.Model.Business.Nokia.AgcfGatewayTable.NgfsAgcfGatewayTableAid, gwId);
369: agcfGatewayRecord = Ia.Ftn.Cl.Model.Data.Nokia.AgcfGatewayRecord.Read(agcfGatewayRecordId);
370:
371: if (agcfGatewayRecord != null)
372: {
373: nddOnt = Ia.Ftn.Cl.Model.Data.NetworkDesignDocument.OntIpToOntDictionary.ContainsKey(agcfGatewayRecord.IP1) ? Ia.Ftn.Cl.Model.Data.NetworkDesignDocument.OntIpToOntDictionary[agcfGatewayRecord.IP1] : null;
374:
375: if (nddOnt != null)
376: {
377: agcfEndpointList = ims.RtrvNgfsAgcfEndpointV2List(agcfGatewayRecord.GwId, nddOnt, out Ia.Ftn.Cl.Model.Business.Nokia.Ims.Response response);
378:
379: if (response.ResultCode == Ia.Ftn.Cl.Model.Client.Nokia.Ims.ResultCode.Successful || response.ResultCode == Ia.Ftn.Cl.Model.Client.Nokia.Ims.ResultCode.PlxServiceObjectDoesNotExist || response.ResultCode == Ia.Ftn.Cl.Model.Client.Nokia.Ims.ResultCode.SuccessfulButNoParameters)
380: {
381: b = Ia.Ftn.Cl.Model.Data.Nokia.Ims.UpdateNgfsAgcfEndpointList(gwId, agcfGatewayRecordId, response, agcfEndpointList);
382: }
383: else if (response.ResultCode == Ia.Ftn.Cl.Model.Client.Nokia.Ims.ResultCode.SessionInvalid)
384: {
385: }
386: else throw new Exception(@"Undefined result code """ + response + @""" seen in Ia.Ftn.Cl.Model.Data.Nokia.Ims.ResultCode");
387:
388: result = "Endpoint: GwId:" + gwId + ", " + response.ResultCode.ToString();
389: }
390: else
391: {
392: result = "Endpoint: " + "Error: nddOnt == null, GwId:" + gwId;
393: }
394: }
395: else
396: {
397: result = "Endpoint: " + "GwId:" + gwId + ", Exception: " + @"agcfGatewayRecord is null, agcfGatewayRecordsId=" + agcfGatewayRecordId;
398: }
399: }
400: */
401:
402: ////////////////////////////////////////////////////////////////////////////
403:
404: /// <summary>
405: ///
406: /// </summary>
407: public static void CreateAgcfGatewayRecordForGwId(Ia.Ftn.Cl.Models.Client.Nokia.Ims ims, int gwId, Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Ont nddOnt, out string result)
408: {
409: ims.EntNgfsAgcfGwCombinedRecV2(gwId, nddOnt, out Ia.Ftn.Cl.Models.Business.Nokia.Ims.Response response);
410:
411: result = response.ResultCode.ToString();
412: }
413:
414: ////////////////////////////////////////////////////////////////////////////
415:
416: /// <summary>
417: ///
418: /// </summary>
419: public static void ReadUpdateAgcfGatewayRecordAndAgcfEndpointListAndSubPartyAndSubscriberAndServiceForGwId(Ia.Ftn.Cl.Models.Client.Nokia.Ims nokiaIms/*, Ia.Ftn.Cl.Model.Business.NetworkDesignDocument.Ont nddOnt*/, int gwId, out string result)
420: {
421: bool agcfGatewayRecordUpdated, agcfEndpointListUpdated, ngfsSubPartyUpdated, ngfsSubscriberUpdated;
422: int agcfGatewayRecordId, imsService;
423: string service, primarySwitch, partyId, prividUser, subPartyId, r;
424: //Ia.Ftn.Cl.Model.Business.NetworkDesignDocument.Ont nddOnt;
425: Ia.Ftn.Cl.Models.Nokia.AgcfGatewayRecord agcfGatewayRecord;
426: Ia.Ftn.Cl.Models.Nokia.SubParty subParty;
427: Ia.Ftn.Cl.Models.Nokia.Subscriber subscriber;
428: List<Ia.Ftn.Cl.Models.Nokia.AgcfEndpoint> agcfEndpointList;
429:
430: // Read GwId->Ep(s)->Sp->Sub, and ask about non FSDB sub search on XML
431:
432: result = "gwId: " + gwId;
433:
434: agcfGatewayRecordId = Ia.Ftn.Cl.Models.Nokia.AgcfGatewayRecord.AgcfGatewayRecordId(Ia.Ftn.Cl.Models.Business.Nokia.AgcfGatewayTable.NgfsAgcfGatewayTableAid, gwId);
435: agcfGatewayRecord = nokiaIms.RtrvNgfsAgcfGatewayRecordV2(gwId, out Ia.Ftn.Cl.Models.Business.Nokia.Ims.Response response);
436:
437: if (response.ResultCode == Ia.Ftn.Cl.Models.Client.Nokia.Ims.ResultCode.Successful || response.ResultCode == Ia.Ftn.Cl.Models.Client.Nokia.Ims.ResultCode.PlxServiceObjectDoesNotExist)
438: {
439: agcfGatewayRecordUpdated = Ia.Ftn.Cl.Models.Data.Nokia.Ims.UpdateAgcfGatewayRecord(gwId, response, agcfGatewayRecord, out r);
440:
441: if (!string.IsNullOrEmpty(r)) result += ", UpdateAgcfGatewayRecord: " + r;
442:
443: if (agcfGatewayRecord != null)
444: {
445: imsService = Ia.Ftn.Cl.Models.Business.Nokia.Ims.ImsServiceFromAgcfSipIaPort(agcfGatewayRecord.AgcfSipIaPort);
446: primarySwitch = Ia.Ftn.Cl.Models.Business.Nokia.Ims.PrimarySwitchFromAgcfGatewayRecord(agcfGatewayRecord.IsPrimary);
447:
448: //if (nddOnt != null) result += " " + nddOnt.Access.Name;
449: //else result += " warning: nddOnt is null for IP: " + agcfGatewayRecord.IP1;
450:
451: agcfEndpointList = nokiaIms.RtrvNgfsAgcfEndpointV2List(agcfGatewayRecord.GwId, primarySwitch, imsService, out response);
452:
453: if (response.ResultCode == Ia.Ftn.Cl.Models.Client.Nokia.Ims.ResultCode.Successful || response.ResultCode == Ia.Ftn.Cl.Models.Client.Nokia.Ims.ResultCode.PlxServiceObjectDoesNotExist || response.ResultCode == Ia.Ftn.Cl.Models.Client.Nokia.Ims.ResultCode.SuccessfulButNoParameters)
454: {
455: agcfEndpointListUpdated = Ia.Ftn.Cl.Models.Data.Nokia.Ims.UpdateNgfsAgcfEndpointList(gwId, agcfGatewayRecordId, response, agcfEndpointList);
456:
457: agcfEndpointList = Ia.Ftn.Cl.Models.Data.Nokia.AgcfEndpoint.List(gwId);
458:
459: if (agcfEndpointList != null)
460: {
461: foreach (Ia.Ftn.Cl.Models.Nokia.AgcfEndpoint agcfEndpoint in agcfEndpointList)
462: {
463: prividUser = agcfEndpoint.PrividUser;
464: partyId = Ia.Ftn.Cl.Models.Business.NumberFormatConverter.PartyId(prividUser);
465:
466: subParty = nokiaIms.RtrvNgfsSubPartyV2(partyId, primarySwitch, imsService, out response);
467:
468: if (response.ResultCode == Ia.Ftn.Cl.Models.Client.Nokia.Ims.ResultCode.Successful || response.ResultCode == Ia.Ftn.Cl.Models.Client.Nokia.Ims.ResultCode.PlxServiceObjectDoesNotExist)
469: {
470: ngfsSubPartyUpdated = Ia.Ftn.Cl.Models.Data.Nokia.Ims.UpdateNgfsSubParty(partyId, agcfEndpoint.Id, response, subParty);
471:
472: // below: read the SubParty
473: subPartyId = Ia.Ftn.Cl.Models.Nokia.SubParty.SubPartyId(partyId);
474: subParty = Ia.Ftn.Cl.Models.Data.Nokia.SubParty.Read(subPartyId);
475:
476: if (subParty != null)
477: {
478: subscriber = nokiaIms.RtrvNgfsSubscriberV2(partyId, primarySwitch, imsService, out response);
479:
480: if (response.ResultCode == Ia.Ftn.Cl.Models.Client.Nokia.Ims.ResultCode.Successful || response.ResultCode == Ia.Ftn.Cl.Models.Client.Nokia.Ims.ResultCode.PlxServiceObjectDoesNotExist)
481: {
482: service = Ia.Ftn.Cl.Models.Business.NumberFormatConverter.Service(partyId);
483:
484: ngfsSubscriberUpdated = Ia.Ftn.Cl.Models.Data.Nokia.Ims.UpdateNgfsSubscriber(partyId, subPartyId, response, subscriber);
485:
486: Ia.Ftn.Cl.Models.Data.Nokia.Ims.UpdateServiceFromAgcfGatewayRecordAndAgcfEndpointAndSubPartyAndSubscriber(service, agcfGatewayRecord, agcfEndpoint, subParty, subscriber);
487:
488: result += "," + service;
489: }
490: else
491: {
492: result += " error: subscriber: " + response.ResultCode.ToString();
493: }
494: }
495: else
496: {
497: result += " subParty is null";
498: }
499: }
500: else
501: {
502: result += " error: subParty: " + response.ResultCode.ToString();
503: }
504: }
505: }
506: else
507: {
508: result += " agcfEndpointList is null";
509: }
510: }
511: else
512: {
513: result += " error: agcfEndpointList: " + response.ResultCode.ToString();
514: }
515: }
516: else
517: {
518: result += " agcfGatewayRecord is null";
519: }
520: }
521: else
522: {
523: result += " error: agcfGatewayRecord: " + response.ResultCode.ToString();
524: }
525:
526: // temp
527: //Ia.Ftn.Cl.Model.Data.Nokia.Ims.ReadAgcfGatewayRecordFromSkbForGwId(nokiaIms, gwId, out r2);
528: //result += ". AgcfGatewayRecord (SKB): " + r2;
529: }
530:
531: ////////////////////////////////////////////////////////////////////////////
532:
533: /// <summary>
534: ///
535: /// </summary>
536: public static void ReadUpdateSubPartyAndSubscriberAndServiceForService(Ia.Ftn.Cl.Models.Client.Nokia.Ims nokiaIms, string _service, Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Ont nddOnt, out string result)
537: {
538: bool updated;
539: int imsService;
540: string service, primarySwitch, partyId, subPartyId;
541: Ia.Ftn.Cl.Models.Nokia.SubParty subParty;
542: Ia.Ftn.Cl.Models.Nokia.Subscriber subscriber;
543: Ia.Ftn.Cl.Models.Business.Nokia.Ims.Response subPartyResponse, subscriberResponse;
544:
545: result = string.Empty;
546:
547: partyId = Ia.Ftn.Cl.Models.Business.NumberFormatConverter.PartyId(_service);
548: subPartyId = Ia.Ftn.Cl.Models.Nokia.SubParty.SubPartyId(partyId);
549: service = Ia.Ftn.Cl.Models.Business.NumberFormatConverter.Service(partyId);
550:
551: if (nddOnt != null)
552: {
553: imsService = nddOnt.ImsService;
554: primarySwitch = nddOnt.PrimarySwitch;
555:
556: subParty = nokiaIms.RtrvNgfsSubPartyV2(subPartyId, primarySwitch, imsService, out subPartyResponse);
557: subscriber = nokiaIms.RtrvNgfsSubscriberV2(partyId, primarySwitch, imsService, out subscriberResponse);
558:
559: updated = Ia.Ftn.Cl.Models.Data.Nokia.Ims.UpdateNgfsSubPartyAndNgfsSubscriberWithoutEndPoint(subPartyId, subParty, subPartyResponse, partyId, subscriber, subscriberResponse);
560: Ia.Ftn.Cl.Models.Data.Nokia.Ims.UpdateServiceFromSubPartyAndSubscriber(service, nddOnt.Access.Id);
561: }
562: else
563: {
564: /*
565: foreach (Ia.Ftn.Cl.Model.Business.Nokia.Ims.ImsBasicService ibs in Ia.Ftn.Cl.Model.Business.Nokia.Ims.ImsBasicServiceList)
566: {
567: Ia.Ftn.Cl.Model.Data.Nokia.Ims.ReadSubPartyAndSubscriber(nokiaIms, service, ibs.PrimarySwitch, ibs.Fsdb, ibs.Service, out string r);
568:
569: result += r + ",";
570: }
571: */
572: }
573: }
574:
575: ////////////////////////////////////////////////////////////////////////////
576:
577: /// <summary>
578: ///
579: /// </summary>
580: public static void ReadSubPartyAndSubscriber(Ia.Ftn.Cl.Models.Client.Nokia.Ims nokiaIms, string _service, string primarySwitch, string fsdb, int imsService, out string result)
581: {
582: bool updated;
583: string service, partyId, subPartyId;
584: Ia.Ftn.Cl.Models.Nokia.SubParty subParty;
585: Ia.Ftn.Cl.Models.Nokia.Subscriber subscriber;
586: Ia.Ftn.Cl.Models.Business.Nokia.Ims.Response subPartyResponse, subscriberResponse;
587:
588: result = string.Empty;
589:
590: partyId = Ia.Ftn.Cl.Models.Business.NumberFormatConverter.PartyId(_service);
591: subPartyId = Ia.Ftn.Cl.Models.Nokia.SubParty.SubPartyId(partyId);
592: service = Ia.Ftn.Cl.Models.Business.NumberFormatConverter.Service(partyId);
593:
594: subParty = nokiaIms.RtrvNgfsSubPartyV2(subPartyId, primarySwitch, imsService, out subPartyResponse);
595: subscriber = nokiaIms.RtrvNgfsSubscriberV2(partyId, primarySwitch, imsService, out subscriberResponse);
596:
597: updated = Ia.Ftn.Cl.Models.Data.Nokia.Ims.UpdateNgfsSubPartyAndNgfsSubscriberWithoutEndPoint(subPartyId, subParty, subPartyResponse, partyId, subscriber, subscriberResponse);
598: Ia.Ftn.Cl.Models.Data.Nokia.Ims.UpdateServiceFromSubPartyAndSubscriber(service, string.Empty);
599: }
600:
601: ////////////////////////////////////////////////////////////////////////////
602:
603: /// <summary>
604: ///
605: /// </summary>
606: public static void DeleteAgcfGatewayRecordForGwId(Ia.Ftn.Cl.Models.Client.Nokia.Ims nokiaIms, Ia.Ftn.Cl.Models.Nokia.AgcfGatewayRecord agcfGatewayRecord, out string result)
607: {
608: string primarySwitch, secondarySwitch;
609:
610: primarySwitch = Ia.Ftn.Cl.Models.Business.Nokia.Ims.PrimarySwitchFromAgcfGatewayRecord(agcfGatewayRecord.IsPrimary);
611: secondarySwitch = Ia.Ftn.Cl.Models.Business.Nokia.Ims.SecondarySwitchFromAgcfGatewayRecord(agcfGatewayRecord.IsPrimary);
612:
613: nokiaIms.DltNgfsAgcfGwCombinedRecV2(agcfGatewayRecord.GwId, primarySwitch, out Ia.Ftn.Cl.Models.Business.Nokia.Ims.Response primarySwitchDeleteResponse);
614: nokiaIms.DltNgfsAgcfGwCombinedRecV2(agcfGatewayRecord.GwId, secondarySwitch, out Ia.Ftn.Cl.Models.Business.Nokia.Ims.Response secondarySwitchDeleteResponse);
615:
616: result = "Primary: " + primarySwitchDeleteResponse.ResultCode.ToString() + " (FailureReason: " + primarySwitchDeleteResponse.FailureReason.ToString() + "), Secondary: " + secondarySwitchDeleteResponse.ResultCode.ToString() + " (FailureReason: " + secondarySwitchDeleteResponse.FailureReason.ToString() + "). ";
617: }
618:
619: ////////////////////////////////////////////////////////////////////////////
620:
621: /// <summary>
622: ///
623: /// </summary>
624: public static void DeleteAgcfGatewayRecordForGwId(Ia.Ftn.Cl.Models.Client.Nokia.Ims nokiaIms, int gwId, out string result)
625: {
626: string firstSwitch, secondSwitch;
627:
628: firstSwitch = Ia.Ftn.Cl.Models.Business.Nokia.Ims.TEC;
629: secondSwitch = Ia.Ftn.Cl.Models.Business.Nokia.Ims.SKB;
630:
631: nokiaIms.DltNgfsAgcfGwCombinedRecV2(gwId, firstSwitch, out Ia.Ftn.Cl.Models.Business.Nokia.Ims.Response primarySwitchDeleteResponse);
632: nokiaIms.DltNgfsAgcfGwCombinedRecV2(gwId, secondSwitch, out Ia.Ftn.Cl.Models.Business.Nokia.Ims.Response secondarySwitchDeleteResponse);
633:
634: result = "First: " + primarySwitchDeleteResponse.ResultCode.ToString() + ", Second: " + secondarySwitchDeleteResponse.ResultCode.ToString() + ". ";
635: }
636:
637: /*
638: ////////////////////////////////////////////////////////////////////////////
639:
640: /// <summary>
641: ///
642: /// </summary>
643: public static void ReadAgcfEndpointAndSubPartyAndSubscriberForService(Ia.Ftn.Cl.Model.Client.Nokia.Ims ims, int gwId, string service, out string result)
644: {
645: bool ngfsSubPartyUpdated, ngfsSubscriberUpdated;
646: int imsService;
647: string primarySwitch, partyId, prividUser, subPartyId;
648: Ia.Ftn.Cl.Model.Business.NetworkDesignDocument.Ont nddOnt;
649: Ia.Ftn.Cl.Model.Nokia.AgcfGatewayRecord agcfGatewayRecord;
650: Ia.Ftn.Cl.Model.Nokia.AgcfEndpoint agcfEndpoint;
651: Ia.Ftn.Cl.Model.Nokia.SubParty subParty;
652: Ia.Ftn.Cl.Model.Nokia.Subscriber subscriber;
653: Ia.Ftn.Cl.Model.Business.Nokia.Ims.Response response;
654:
655: result = "service: " + service + ", gwId: " + gwId;
656:
657: prividUser = Ia.Ftn.Cl.Model.Business.NumberFormatConverter.PrividUser(service);
658: partyId = Ia.Ftn.Cl.Model.Business.NumberFormatConverter.PartyId(service);
659:
660: Ia.Ftn.Cl.Model.Nokia.AgcfGatewayRecord agcfGatewayRecord;
661:
662: agcfEndpoint = ims.RtrvNgfsAgcfEndpointV2(prividUser, primarySwitch, imsService, out response);
663:
664: if (response.ResultCode == Ia.Ftn.Cl.Model.Client.Nokia.Ims.ResultCode.Successful || response.ResultCode == Ia.Ftn.Cl.Model.Client.Nokia.Ims.ResultCode.PLX_SERVICE_OBJECT_DOES_NOT_EXIST || response.ResultCode == Ia.Ftn.Cl.Model.Client.Nokia.Ims.ResultCode.SuccessfulButNoParameters)
665: {
666: agcfEndpoint = Ia.Ftn.Cl.Model.Data.Nokia.AgcfEndpoint.Read(prividUser);
667:
668: if (agcfEndpoint != null)
669: {
670: nddOnt = (from q in Ia.Ftn.Cl.Model.Data.NetworkDesignDocument.OntList where q.Ip == agcfEndpoint.AgcfGatewayRecord.IP1 select q).SingleOrDefault();
671: imsService = Ia.Ftn.Cl.Model.Business.Nokia.Ims.ImsServiceFromAgcfSipIaPort(agcfEndpoint.AgcfGatewayRecord.AgcfSipIaPort);
672: primarySwitch = Ia.Ftn.Cl.Model.Business.Nokia.Ims.PrimarySwitchFromAgcfGatewayRecord(agcfEndpoint.AgcfGatewayRecord.IsPrimary);
673:
674: if (nddOnt != null) result += " " + nddOnt.Access.Name;
675: else result += " warning: nddOnt is null for IP: " + agcfEndpoint.AgcfGatewayRecord.IP1;
676:
677: subParty = ims.RtrvNgfsSubPartyV2(partyId, primarySwitch, imsService, out response);
678:
679: if (response.ResultCode == Ia.Ftn.Cl.Model.Client.Nokia.Ims.ResultCode.Successful || response.ResultCode == Ia.Ftn.Cl.Model.Client.Nokia.Ims.ResultCode.PLX_SERVICE_OBJECT_DOES_NOT_EXIST)
680: {
681: ngfsSubPartyUpdated = Ia.Ftn.Cl.Model.Data.Nokia.Ims.UpdateNgfsSubParty(partyId, agcfEndpoint.Id, response, subParty);
682:
683: // below: read the SubParty
684: subPartyId = Ia.Ftn.Cl.Model.Nokia.SubParty.SubPartyId(partyId);
685: subParty = Ia.Ftn.Cl.Model.Nokia.SubParty.Read(subPartyId);
686:
687: if (subParty != null)
688: {
689: subscriber = ims.RtrvNgfsSubscriberV2(partyId, primarySwitch, imsService, out response);
690:
691: if (response.ResultCode == Ia.Ftn.Cl.Model.Client.Nokia.Ims.ResultCode.Successful || response.ResultCode == Ia.Ftn.Cl.Model.Client.Nokia.Ims.ResultCode.PLX_SERVICE_OBJECT_DOES_NOT_EXIST)
692: {
693: service = Ia.Ftn.Cl.Model.Business.NumberFormatConverter.Service(partyId);
694:
695: ngfsSubscriberUpdated = Ia.Ftn.Cl.Model.Data.Nokia.Ims.UpdateNgfsSubscriber(partyId, subPartyId, response, subscriber);
696:
697: Ia.Ftn.Cl.Model.Data.Nokia.Ims.UpdateServiceFromAgcfEndpointAndSubPartyAndSubscriber(service, agcfEndpoint, subParty, subscriber);
698:
699: result += "," + service;
700: }
701: else
702: {
703: result += " error: subscriber: " + response.ResultCode.ToString();
704: }
705: }
706: else
707: {
708: result += " subParty is null";
709: }
710: }
711: else
712: {
713: result += " error: subParty: " + response.ResultCode.ToString();
714: }
715: }
716: else
717: {
718: result += " agcfEndpoint is null";
719: }
720: }
721: else
722: {
723: result += " error: agcfEndpointList: " + response.ResultCode.ToString();
724: }
725: }
726: */
727:
728: ////////////////////////////////////////////////////////////////////////////
729:
730: /// <summary>
731: ///
732: /// </summary>
733: public static bool UpdateAgcfGatewayRecord(int gwId, Ia.Ftn.Cl.Models.Business.Nokia.Ims.Response response, Ia.Ftn.Cl.Models.Nokia.AgcfGatewayRecord newAgcfGatewayRecord, out string result)
734: {
735: bool updated;
736: int id, tableId;
737: Ia.Ftn.Cl.Models.Nokia.AgcfGatewayRecord agcfGatewayRecord;
738:
739: tableId = Ia.Ftn.Cl.Models.Business.Nokia.AgcfGatewayTable.NgfsAgcfGatewayTableAid;
740:
741: result = string.Empty;
742:
743: using (var db = new Ia.Ftn.Cl.Db())
744: {
745: id = Ia.Ftn.Cl.Models.Nokia.AgcfGatewayRecord.AgcfGatewayRecordId(tableId, gwId);
746:
747: agcfGatewayRecord = (from gr in db.AgcfGatewayRecords where gr.Id == id select gr).Include(gr => gr.AgcfEndpoints).SingleOrDefault();
748:
749: switch (response.ResultCode)
750: {
751: case Ia.Ftn.Cl.Models.Client.Nokia.Ims.ResultCode.Successful:
752: {
753: if (agcfGatewayRecord == null)
754: {
755: newAgcfGatewayRecord.Created = newAgcfGatewayRecord.Updated = DateTime.UtcNow.AddHours(3);
756: db.AgcfGatewayRecords.Add(newAgcfGatewayRecord);
757:
758: updated = true;
759: }
760: else
761: {
762: if (agcfGatewayRecord.Update(newAgcfGatewayRecord))
763: {
764: db.AgcfGatewayRecords.Attach(agcfGatewayRecord);
765: db.Entry(agcfGatewayRecord).State = Microsoft.EntityFrameworkCore.EntityState.Modified;
766:
767: updated = true;
768: }
769: else updated = false;
770: }
771:
772: break;
773: }
774: case Ia.Ftn.Cl.Models.Client.Nokia.Ims.ResultCode.PlxServiceObjectDoesNotExist:
775: {
776: if (agcfGatewayRecord != null)
777: {
778: // below: delete if foreign key is not null or zero
779: if (agcfGatewayRecord.AgcfEndpoints == null || agcfGatewayRecord.AgcfEndpoints.Count == 0)
780: {
781: db.AgcfGatewayRecords.Remove(agcfGatewayRecord);
782:
783: updated = true;
784: }
785: else
786: {
787: updated = false;
788:
789: result = "AGCF gateway record for GwId " + gwId + " does not exist in IMS, but agcfGatewayRecord.AgcfEndpoints != null && agcfGatewayRecord.AgcfEndpoints.Count > 0. ";
790: }
791: }
792: else updated = false;
793:
794: break;
795: }
796: default: updated = false; break;
797: }
798:
799: db.SaveChanges();
800: }
801:
802: return updated;
803: }
804:
805: ////////////////////////////////////////////////////////////////////////////
806:
807: /// <summary>
808: ///
809: /// </summary>
810: public static bool UpdateNgfsAgcfEndpoint(string prividUser, Ia.Ftn.Cl.Models.Business.Nokia.Ims.Response response, Ia.Ftn.Cl.Models.Nokia.AgcfEndpoint newAgcfEndpoint)
811: {
812: bool isOk;
813: int agcfGatewayRecordsId;
814: string id;
815: Ia.Ftn.Cl.Models.Nokia.AgcfEndpoint agcfEndpoint;
816:
817: isOk = false;
818:
819: using (var db = new Ia.Ftn.Cl.Db())
820: {
821: id = Ia.Ftn.Cl.Models.Nokia.AgcfEndpoint.AgcfEndpointId(prividUser);
822:
823: agcfEndpoint = (from ep in db.AgcfEndpoints where ep.Id == id select ep).SingleOrDefault();
824:
825: switch (response.ResultCode)
826: {
827: case Ia.Ftn.Cl.Models.Client.Nokia.Ims.ResultCode.Successful:
828: {
829: if (agcfEndpoint == null)
830: {
831: newAgcfEndpoint.Created = newAgcfEndpoint.Updated = DateTime.UtcNow.AddHours(3);
832: db.AgcfEndpoints.Add(newAgcfEndpoint);
833: }
834: else
835: {
836: // below: reference
837: agcfGatewayRecordsId = Ia.Ftn.Cl.Models.Nokia.AgcfGatewayRecord.AgcfGatewayRecordId(Ia.Ftn.Cl.Models.Business.Nokia.AgcfGatewayTable.NgfsAgcfGatewayTableAid, newAgcfEndpoint.GwId);
838: newAgcfEndpoint.AgcfGatewayRecord = (from gr in db.AgcfGatewayRecords where gr.Id == agcfGatewayRecordsId select gr).SingleOrDefault();
839:
840: if (agcfEndpoint.Update(newAgcfEndpoint))
841: {
842: db.AgcfEndpoints.Attach(agcfEndpoint);
843: db.Entry(agcfEndpoint).State = Microsoft.EntityFrameworkCore.EntityState.Modified;
844: }
845: }
846:
847: break;
848: }
849: case Ia.Ftn.Cl.Models.Client.Nokia.Ims.ResultCode.PlxServiceObjectDoesNotExist:
850: {
851: if (agcfEndpoint != null)
852: {
853: // below: skip delete if the foreign key is not null
854: if (agcfEndpoint.SubParties == null)
855: {
856: db.AgcfEndpoints.Remove(agcfEndpoint);
857: }
858: }
859: break;
860: }
861: }
862:
863: db.SaveChanges();
864:
865: isOk = true;
866: }
867:
868: return isOk;
869: }
870:
871: ////////////////////////////////////////////////////////////////////////////
872:
873: /// <summary>
874: ///
875: /// </summary>
876: public static bool UpdateNgfsAgcfEndpointList(int gwId, int agcfGatewayRecordId, Ia.Ftn.Cl.Models.Business.Nokia.Ims.Response response, List<Ia.Ftn.Cl.Models.Nokia.AgcfEndpoint> newAgcfEndpointList)
877: {
878: bool updated;
879: Ia.Ftn.Cl.Models.Nokia.AgcfGatewayRecord agcfGatewayRecord;
880: Ia.Ftn.Cl.Models.Nokia.AgcfEndpoint agcfEndpoint;
881: List<Ia.Ftn.Cl.Models.Nokia.AgcfEndpoint> agcfEndpointList;
882:
883: updated = false;
884:
885: using (var db = new Ia.Ftn.Cl.Db())
886: {
887: agcfEndpointList = (from ep in db.AgcfEndpoints where ep.GwId == gwId select ep).Include(ep => ep.SubParties).ToList();
888:
889: switch (response.ResultCode)
890: {
891: case Ia.Ftn.Cl.Models.Client.Nokia.Ims.ResultCode.Successful:
892: {
893: // below: add or update read endpoints
894: foreach (Ia.Ftn.Cl.Models.Nokia.AgcfEndpoint newAgcfEndpoint in newAgcfEndpointList)
895: {
896: // below: reference
897: agcfGatewayRecord = (from gr in db.AgcfGatewayRecords where gr.Id == agcfGatewayRecordId select gr).SingleOrDefault();
898: agcfEndpoint = (from ep in db.AgcfEndpoints where ep.Id == newAgcfEndpoint.Id select ep).SingleOrDefault();
899: newAgcfEndpoint.AgcfGatewayRecord = agcfGatewayRecord;
900:
901: if (agcfEndpoint == null)
902: {
903: newAgcfEndpoint.Created = newAgcfEndpoint.Updated = DateTime.UtcNow.AddHours(3);
904: db.AgcfEndpoints.Add(newAgcfEndpoint);
905:
906: updated = updated || true;
907: }
908: else
909: {
910: if (agcfEndpoint.Update(newAgcfEndpoint))
911: {
912: db.AgcfEndpoints.Attach(agcfEndpoint);
913: db.Entry(agcfEndpoint).State = Microsoft.EntityFrameworkCore.EntityState.Modified;
914:
915: updated = updated || true;
916: }
917: else updated = updated || false;
918: }
919: }
920:
921: // below: remove stored endpoint that do not exist in read
922: if (agcfEndpointList != null && agcfEndpointList.Count > 0)
923: {
924: foreach (Ia.Ftn.Cl.Models.Nokia.AgcfEndpoint storedAgcfEndpoint in agcfEndpointList)
925: {
926: agcfEndpoint = (from a in newAgcfEndpointList where a.Id == storedAgcfEndpoint.Id select a).SingleOrDefault();
927:
928: if (agcfEndpoint == null && (storedAgcfEndpoint.SubParties == null || storedAgcfEndpoint.SubParties.Count == 0))
929: {
930: db.AgcfEndpoints.Remove(storedAgcfEndpoint);
931:
932: updated = updated || true;
933: }
934: }
935: }
936:
937: break;
938: }
939: case Ia.Ftn.Cl.Models.Client.Nokia.Ims.ResultCode.SuccessfulButNoParameters:
940: case Ia.Ftn.Cl.Models.Client.Nokia.Ims.ResultCode.PlxServiceObjectDoesNotExist:
941: {
942: if (agcfEndpointList != null && agcfEndpointList.Count > 0)
943: {
944: foreach (Ia.Ftn.Cl.Models.Nokia.AgcfEndpoint deletedAgcfEndpoint in agcfEndpointList)
945: {
946: // below: delete if foreign key is not null or zero
947: if (deletedAgcfEndpoint.SubParties == null || deletedAgcfEndpoint.SubParties.Count == 0)
948: {
949: db.AgcfEndpoints.Remove(deletedAgcfEndpoint);
950:
951: updated = updated || true;
952: }
953: else updated = updated || false;
954:
955: }
956: }
957: break;
958: }
959: default: updated = updated || false; break;
960: }
961:
962: db.SaveChanges();
963: }
964:
965: return updated;
966: }
967:
968: ////////////////////////////////////////////////////////////////////////////
969:
970: /// <summary>
971: ///
972: /// </summary>
973: public static bool UpdateNgfsSubParty(string partyId, string agcfEndpointId, Ia.Ftn.Cl.Models.Business.Nokia.Ims.Response response, Ia.Ftn.Cl.Models.Nokia.SubParty newSubParty)
974: {
975: bool updated;
976: string id;
977: Ia.Ftn.Cl.Models.Nokia.SubParty subParty;
978:
979: using (var db = new Ia.Ftn.Cl.Db())
980: {
981: id = Ia.Ftn.Cl.Models.Nokia.SubParty.SubPartyId(partyId);
982:
983: subParty = (from sp in db.SubParties where sp.Id == id select sp).Include(sp => sp.Subscribers).SingleOrDefault();
984:
985: switch (response.ResultCode)
986: {
987: case Ia.Ftn.Cl.Models.Client.Nokia.Ims.ResultCode.Successful:
988: {
989: // below: reference
990: agcfEndpointId = Ia.Ftn.Cl.Models.Nokia.AgcfEndpoint.AgcfEndpointId(agcfEndpointId);
991: newSubParty.AgcfEndpoint = (from ep in db.AgcfEndpoints where ep.Id == agcfEndpointId select ep).SingleOrDefault();
992:
993: if (subParty == null)
994: {
995: newSubParty.Created = newSubParty.Updated = DateTime.UtcNow.AddHours(3);
996: db.SubParties.Add(newSubParty);
997:
998: updated = true;
999: }
1000: else
1001: {
1002: // below: they don't
1003: // <PrimaryPUID>icsSubAgcfpuid</PrimaryPUID> in <SubParty> element of ent-ngfs-subscriber-v2 has to match <Dn>icsSubAgcfpuid</Dn> in ent-ngfs-agcfendpoint-v2
1004:
1005: if (subParty.Update(newSubParty))
1006: {
1007: db.SubParties.Attach(subParty);
1008: db.Entry(subParty).State = Microsoft.EntityFrameworkCore.EntityState.Modified;
1009:
1010: updated = true;
1011: }
1012: else updated = false;
1013: }
1014:
1015: break;
1016: }
1017: case Ia.Ftn.Cl.Models.Client.Nokia.Ims.ResultCode.PlxServiceObjectDoesNotExist:
1018: {
1019: if (subParty != null)
1020: {
1021: // below: delete if foreign key is not null or zero
1022: if (subParty.Subscribers == null || subParty.Subscribers.Count == 0)
1023: {
1024: db.SubParties.Remove(subParty);
1025:
1026: updated = true;
1027: }
1028: else updated = false;
1029: }
1030: else updated = false;
1031: break;
1032: }
1033: default: updated = false; break;
1034: }
1035:
1036: db.SaveChanges();
1037: }
1038:
1039: return updated;
1040: }
1041:
1042: ////////////////////////////////////////////////////////////////////////////
1043:
1044: /// <summary>
1045: ///
1046: /// </summary>
1047: public static bool UpdateNgfsSubPartyAndNgfsSubscriberWithoutEndPoint(string subPartyId, Ia.Ftn.Cl.Models.Nokia.SubParty retrievedSubParty, Ia.Ftn.Cl.Models.Business.Nokia.Ims.Response retrievedSubPartyResponse, string partyId, Ia.Ftn.Cl.Models.Nokia.Subscriber retrievedSubscriber, Ia.Ftn.Cl.Models.Business.Nokia.Ims.Response retrievedSubscriberResponse)
1048: {
1049: bool updated;
1050: Ia.Ftn.Cl.Models.Nokia.SubParty subParty;
1051: Ia.Ftn.Cl.Models.Nokia.Subscriber subscriber;
1052:
1053: updated = false;
1054:
1055: using (var db = new Ia.Ftn.Cl.Db())
1056: {
1057: subParty = (from sp in db.SubParties where sp.Id == subPartyId select sp).SingleOrDefault();
1058: subscriber = (from s in db.Subscribers where s.Id == partyId select s).SingleOrDefault();
1059:
1060: if (retrievedSubParty != null && retrievedSubPartyResponse.ResultCode == Ia.Ftn.Cl.Models.Client.Nokia.Ims.ResultCode.Successful && retrievedSubscriber != null && retrievedSubscriberResponse.ResultCode == Ia.Ftn.Cl.Models.Client.Nokia.Ims.ResultCode.Successful)
1061: {
1062: if (subParty == null)
1063: {
1064: retrievedSubParty.Created = retrievedSubParty.Updated = DateTime.UtcNow.AddHours(3);
1065: db.SubParties.Add(retrievedSubParty);
1066:
1067: updated = true;
1068: }
1069: else
1070: {
1071: if (subParty.Update(retrievedSubParty))
1072: {
1073: db.SubParties.Attach(subParty);
1074: db.Entry(subParty).State = Microsoft.EntityFrameworkCore.EntityState.Modified;
1075:
1076: updated = true;
1077: }
1078: }
1079:
1080: // below: reference
1081: retrievedSubscriber.SubParty = (from sp in db.SubParties where sp.Id == retrievedSubParty.Id select sp).SingleOrDefault();
1082:
1083: if (subscriber == null)
1084: {
1085: retrievedSubscriber.Created = retrievedSubscriber.Updated = DateTime.UtcNow.AddHours(3);
1086: db.Subscribers.Add(retrievedSubscriber);
1087:
1088: updated = true;
1089: }
1090: else
1091: {
1092: if (subscriber.Update(retrievedSubscriber))
1093: {
1094: db.Subscribers.Attach(subscriber);
1095: db.Entry(subscriber).State = Microsoft.EntityFrameworkCore.EntityState.Modified;
1096:
1097: updated = true;
1098: }
1099: }
1100: }
1101: else if (retrievedSubParty == null && retrievedSubPartyResponse.ResultCode == Ia.Ftn.Cl.Models.Client.Nokia.Ims.ResultCode.PlxServiceObjectDoesNotExist && retrievedSubscriber == null && retrievedSubscriberResponse.ResultCode == Ia.Ftn.Cl.Models.Client.Nokia.Ims.ResultCode.PlxServiceObjectDoesNotExist)
1102: {
1103: if (subscriber != null)
1104: {
1105: db.Subscribers.Remove(subscriber);
1106:
1107: updated = true;
1108: }
1109:
1110: if (subParty != null)
1111: {
1112: db.SubParties.Remove(subParty);
1113:
1114: updated = true;
1115: }
1116: }
1117: else
1118: {
1119:
1120: }
1121:
1122: db.SaveChanges();
1123: }
1124:
1125: return updated;
1126: }
1127:
1128: ////////////////////////////////////////////////////////////////////////////
1129:
1130: /// <summary>
1131: ///
1132: /// </summary>
1133: public static bool UpdateNgfsSubscriber(string partyId, string subPartyId, Ia.Ftn.Cl.Models.Business.Nokia.Ims.Response response, Ia.Ftn.Cl.Models.Nokia.Subscriber newSubscriber)
1134: {
1135: bool updated;
1136: string id;
1137: Ia.Ftn.Cl.Models.Nokia.Subscriber subscriber;
1138:
1139: using (var db = new Ia.Ftn.Cl.Db())
1140: {
1141: id = Ia.Ftn.Cl.Models.Nokia.Subscriber.SubscriberId(partyId);
1142:
1143: subscriber = (from s in db.Subscribers where s.Id == id select s).SingleOrDefault();
1144:
1145: switch (response.ResultCode)
1146: {
1147: case Ia.Ftn.Cl.Models.Client.Nokia.Ims.ResultCode.Successful:
1148: {
1149: // below: reference
1150: newSubscriber.SubParty = (from s in db.SubParties where s.Id == subPartyId select s).SingleOrDefault();
1151:
1152: if (subscriber == null)
1153: {
1154: newSubscriber.Created = newSubscriber.Updated = DateTime.UtcNow.AddHours(3);
1155: db.Subscribers.Add(newSubscriber);
1156:
1157: updated = true;
1158: }
1159: else
1160: {
1161: if (subscriber.Update(newSubscriber))
1162: {
1163: db.Subscribers.Attach(subscriber);
1164: db.Entry(subscriber).State = Microsoft.EntityFrameworkCore.EntityState.Modified;
1165:
1166: updated = true;
1167: }
1168: else updated = false;
1169: }
1170:
1171: break;
1172: }
1173: case Ia.Ftn.Cl.Models.Client.Nokia.Ims.ResultCode.PlxServiceObjectDoesNotExist:
1174: {
1175: if (subscriber != null)
1176: {
1177: db.Subscribers.Remove(subscriber);
1178:
1179: updated = true;
1180: }
1181: else updated = false;
1182:
1183: break;
1184: }
1185: default: updated = false; break;
1186: }
1187:
1188: db.SaveChanges();
1189: }
1190:
1191: return updated;
1192: }
1193:
1194: ////////////////////////////////////////////////////////////////////////////
1195:
1196: /// <summary>
1197: ///
1198: /// </summary>
1199: public static bool UpdateServiceFromAgcfGatewayRecordAndAgcfEndpointAndSubPartyAndSubscriber(string service, Ia.Ftn.Cl.Models.Nokia.AgcfGatewayRecord agcfGatewayRecord, Ia.Ftn.Cl.Models.Nokia.AgcfEndpoint agcfEndpoint, Ia.Ftn.Cl.Models.Nokia.SubParty subParty, Ia.Ftn.Cl.Models.Nokia.Subscriber subscriber)
1200: {
1201: bool insert, update, delete;
1202: int serviceType;
1203: string serviceId;
1204: Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Ont nddOnt;
1205: Ia.Ftn.Cl.Models.Service2 service2, newService;
1206:
1207: insert = update = delete = false;
1208: //result = new Ia.Cl.Models.Result();
1209:
1210: serviceType = Ia.Ftn.Cl.Models.Business.Service.ServiceType.ImsService;
1211: serviceId = Ia.Ftn.Cl.Models.Business.Service2.ServiceId(service, serviceType);
1212:
1213: using (var db = new Ia.Ftn.Cl.Db())
1214: {
1215: if (agcfGatewayRecord != null && agcfEndpoint != null && subParty != null && subscriber != null)
1216: {
1217: newService = new Ia.Ftn.Cl.Models.Service2();
1218:
1219: newService.Id = serviceId;
1220: newService.AreaCode = Ia.Ftn.Cl.Models.Business.Service.CountryCode;
1221: newService.Service = service;
1222: newService.ServiceType = serviceType;
1223:
1224: newService.CallerId = Ia.Ftn.Cl.Models.Business.Nokia.Subscriber.CallingLineIdIsAssigned(subscriber._CallingLineId);
1225: newService.AbbriviatedCalling = Ia.Ftn.Cl.Models.Business.Nokia.Subscriber.OneDigitSpeedDialIsAssigned(subscriber._OneDigitSpeedDial);
1226: newService.CallForwarding = Ia.Ftn.Cl.Models.Business.Nokia.Subscriber.CallForwardingIsAssigned(subscriber._CallForwardingVari);
1227: newService.CallWaiting = Ia.Ftn.Cl.Models.Business.Nokia.Subscriber.CallWaitingIsAssigned(subscriber._CallWaiting, agcfEndpoint.CallWaitingLc);
1228: newService.ConferenceCall = Ia.Ftn.Cl.Models.Business.Nokia.Subscriber.ConferenceCallIsAssigned(subscriber._ConferenceCalling);
1229: newService.InternationalCalling = Ia.Ftn.Cl.Models.Business.Nokia.Subscriber.InternationalCallingIsAssigned(subscriber._CallBarring);
1230: newService.InternationalCallingUserControlled = Ia.Ftn.Cl.Models.Business.Nokia.Subscriber.InternationalCallingUserControlledIsAssigned(subscriber._OutgoingCallBarring);
1231:
1232: newService.AlarmCall = Ia.Ftn.Cl.Models.Business.Nokia.Subscriber.ReminderCallIsAssigned(subscriber._ReminderCall);
1233: newService.WakeupCall = Ia.Ftn.Cl.Models.Business.Nokia.Subscriber.ReminderCallIsAssigned(subscriber._ReminderCall);
1234:
1235: newService.ServiceSuspension = subParty.ServiceSuspension;
1236: //newService.CallBarring = subParty.ServiceSuspension;
1237:
1238: newService.Pin = int.TryParse(subParty.Pin, out int i) ? i : 0;
1239:
1240: nddOnt = Ia.Ftn.Cl.Models.Data.NetworkDesignDocument.OntIpToOntDictionary.ContainsKey(agcfGatewayRecord.IP1) ? Ia.Ftn.Cl.Models.Data.NetworkDesignDocument.OntIpToOntDictionary[agcfGatewayRecord.IP1] : null;
1241:
1242: if (nddOnt != null) newService.Access = (from a in db.Accesses where a.Id == nddOnt.Access.Id select a).SingleOrDefault();
1243: else newService.Access = null;
1244:
1245: service2 = (from s in db.Service2
1246: where s.ServiceType == Ia.Ftn.Cl.Models.Business.Service.ServiceType.ImsService && s.Id == newService.Id
1247: select s).SingleOrDefault();
1248:
1249: if (service2 == null)
1250: {
1251: newService.Created = newService.Updated = DateTime.UtcNow.AddHours(3);
1252: db.Service2.Add(newService);
1253:
1254: insert = true;
1255: }
1256: else
1257: {
1258: if (service2.Update(newService))
1259: {
1260: db.Service2.Attach(service2);
1261: db.Entry(service2).State = Microsoft.EntityFrameworkCore.EntityState.Modified;
1262:
1263: update = true;
1264: }
1265: else update = false;
1266: }
1267: }
1268: else
1269: {
1270: service2 = (from s in db.Service2
1271: where s.ServiceType == Ia.Ftn.Cl.Models.Business.Service.ServiceType.ImsService && s.Id == serviceId
1272: select s).SingleOrDefault();
1273:
1274: if (service2 != null)
1275: {
1276: db.Service2.Remove(service2);
1277:
1278: delete = true;
1279: }
1280: }
1281:
1282: db.SaveChanges();
1283: }
1284:
1285: //result.AddSuccess(service + ": state: " + Ia.Ftn.Cl.Model.Ui.Text.ExpressionOfInsertOrUpdateOrDelete(insert, update, delete));
1286:
1287: return insert || update || delete;
1288: }
1289:
1290: ////////////////////////////////////////////////////////////////////////////
1291:
1292: /// <summary>
1293: ///
1294: /// </summary>
1295: public static bool UpdateServiceFromSubPartyAndSubscriber(string service, string accessId)
1296: {
1297: bool insert, update, delete;
1298: int serviceType;
1299: string serviceId;
1300: Ia.Ftn.Cl.Models.Nokia.SubParty subParty;
1301: Ia.Ftn.Cl.Models.Nokia.Subscriber subscriber;
1302: Ia.Ftn.Cl.Models.Service2 service2, newService;
1303:
1304: insert = update = delete = false;
1305: //result = new Ia.Cl.Models.Result();
1306:
1307: serviceType = Ia.Ftn.Cl.Models.Business.Service.ServiceType.ImsService;
1308: serviceId = Ia.Ftn.Cl.Models.Business.Service2.ServiceId(service, serviceType);
1309:
1310: using (var db = new Ia.Ftn.Cl.Db())
1311: {
1312: var partyId = Ia.Ftn.Cl.Models.Business.NumberFormatConverter.PartyId(service);
1313: var subPartyId = Ia.Ftn.Cl.Models.Nokia.SubParty.SubPartyId(partyId);
1314:
1315: subParty = (from sp in db.SubParties where sp.Id == subPartyId select sp).SingleOrDefault();
1316: subscriber = (from s in db.Subscribers where s.Id == partyId select s).SingleOrDefault();
1317:
1318: if (subParty != null && subscriber != null)
1319: {
1320: newService = new Ia.Ftn.Cl.Models.Service2();
1321:
1322: newService.Id = serviceId;
1323: newService.AreaCode = Ia.Ftn.Cl.Models.Business.Service.CountryCode;
1324: newService.Service = service;
1325: newService.ServiceType = serviceType;
1326:
1327: newService.CallerId = Ia.Ftn.Cl.Models.Business.Nokia.Subscriber.CallingLineIdIsAssigned(subscriber._CallingLineId);
1328: newService.AbbriviatedCalling = Ia.Ftn.Cl.Models.Business.Nokia.Subscriber.OneDigitSpeedDialIsAssigned(subscriber._OneDigitSpeedDial);
1329: newService.CallForwarding = Ia.Ftn.Cl.Models.Business.Nokia.Subscriber.CallForwardingIsAssigned(subscriber._CallForwardingVari);
1330: newService.CallWaiting = Ia.Ftn.Cl.Models.Business.Nokia.Subscriber.CallWaitingIsAssigned(subscriber._CallWaiting, false);// agcfEndpoint.CallWaitingLc);
1331: newService.ConferenceCall = Ia.Ftn.Cl.Models.Business.Nokia.Subscriber.ConferenceCallIsAssigned(subscriber._ConferenceCalling);
1332: newService.InternationalCalling = Ia.Ftn.Cl.Models.Business.Nokia.Subscriber.InternationalCallingIsAssigned(subscriber._CallBarring);
1333: newService.InternationalCallingUserControlled = Ia.Ftn.Cl.Models.Business.Nokia.Subscriber.InternationalCallingUserControlledIsAssigned(subscriber._OutgoingCallBarring);
1334:
1335: newService.AlarmCall = Ia.Ftn.Cl.Models.Business.Nokia.Subscriber.ReminderCallIsAssigned(subscriber._ReminderCall);
1336: newService.WakeupCall = Ia.Ftn.Cl.Models.Business.Nokia.Subscriber.ReminderCallIsAssigned(subscriber._ReminderCall);
1337:
1338: newService.ServiceSuspension = subParty.ServiceSuspension;
1339: //newService.CallBarring = subParty.ServiceSuspension;
1340:
1341: newService.Pin = int.TryParse(subParty.Pin, out int i) ? i : 0;
1342:
1343: if (!string.IsNullOrEmpty(accessId)) newService.Access = (from a in db.Accesses where a.Id == accessId select a).SingleOrDefault();
1344: else newService.Access = null;
1345:
1346: service2 = (from s in db.Service2
1347: where s.ServiceType == Ia.Ftn.Cl.Models.Business.Service.ServiceType.ImsService && s.Id == newService.Id
1348: select s).SingleOrDefault();
1349:
1350: if (service2 == null)
1351: {
1352: newService.Created = newService.Updated = DateTime.UtcNow.AddHours(3);
1353: db.Service2.Add(newService);
1354:
1355: insert = true;
1356: }
1357: else
1358: {
1359: if (service2.Update(newService))
1360: {
1361: db.Service2.Attach(service2);
1362: db.Entry(service2).State = Microsoft.EntityFrameworkCore.EntityState.Modified;
1363:
1364: update = true;
1365: }
1366: else update = false;
1367: }
1368: }
1369: else
1370: {
1371: service2 = (from s in db.Service2
1372: where s.ServiceType == Ia.Ftn.Cl.Models.Business.Service.ServiceType.ImsService && s.Id == serviceId
1373: select s).SingleOrDefault();
1374:
1375: if (service2 != null)
1376: {
1377: db.Service2.Remove(service2);
1378:
1379: delete = true;
1380: }
1381: }
1382:
1383: db.SaveChanges();
1384: }
1385:
1386: //result.AddSuccess(service + ": state: " + Ia.Ftn.Cl.Model.Ui.Text.ExpressionOfInsertOrUpdateOrDelete(insert, update, delete));
1387:
1388: return insert || update || delete;
1389: }
1390:
1391: /*
1392: ////////////////////////////////////////////////////////////////////////////
1393:
1394: /// <summary>
1395: ///
1396: /// </summary>
1397: public static bool UpdateServiceList(Dictionary<long, Ia.Ftn.Cl.Model.Service> dnServiceDictionary)
1398: {
1399: bool isOk;
1400: int serviceType;
1401: long dn;
1402: string serviceId;
1403: Ia.Ftn.Cl.Model.Service service;
1404: Ia.Ftn.Cl.Model.Service2 service2, newService2;
1405:
1406: isOk = false;
1407:
1408: using (var db = new Ia.Ftn.Cl.Model.Ftn())
1409: {
1410: // below:
1411: foreach (KeyValuePair<long, Ia.Ftn.Cl.Model.Service> u in dnServiceDictionary)
1412: {
1413: dn = u.Key;
1414: service = u.Value;
1415:
1416: serviceType = Ia.Ftn.Cl.Model.Business.Service.ServiceType.ImsService;
1417: serviceId = Ia.Ftn.Cl.Model.Service2.ServiceId(dn.ToString().Remove(0, 3), serviceType); // temp: remove 3 digits
1418:
1419: // below:
1420: if (service != null)
1421: {
1422: newService2 = new Ia.Ftn.Cl.Model.Service2();
1423:
1424: newService2.Id = serviceId;
1425: newService2.AreaCode = Ia.Ftn.Cl.Model.Data.Service.CountryCode;
1426: newService2.Service = dn.ToString();
1427: newService2.ServiceType = serviceType;
1428:
1429: //newService2.ServiceSuspension = ??
1430: newService2.CallBarring = service.OCBUC_ass;
1431: newService2.CallForwarding = service.CFU_ass;
1432: newService2.ConferenceCall = service.CONF;
1433: //newService2.ConferenceCall = service.TPS_ass;
1434:
1435: newService2.AlarmCall = service.ALM_ass;
1436: newService2.CallWaiting = service.CW_ass;
1437: newService2.Pin = service.PIN_code;
1438:
1439: newService2.CallerId = service.CLIP;
1440:
1441: service2 = (from q in db.Service2s where s.ServiceType == Ia.Ftn.Cl.Model.Business.Service.ServiceType.FtnService && q.Id == newService2.Id select q).SingleOrDefault();
1442:
1443: if (service2 == null)
1444: {
1445: newService2.Created = newService2.Updated = DateTime.UtcNow.AddHours(3);
1446: db.Service2s.Add(newService2);
1447: }
1448: else
1449: {
1450: if (service2.Update(newService2))
1451: {
1452: db.Service2s.Attach(service2);
1453: db.Entry(service2).State = Microsoft.EntityFrameworkCore.EntityState.Modified;
1454: }
1455: }
1456: }
1457: else
1458: {
1459: service2 = (from q in db.Service2s where s.ServiceType == Ia.Ftn.Cl.Model.Business.Service.ServiceType.ImsService && q.Id == serviceId select q).SingleOrDefault();
1460:
1461: if (service2 != null) db.Service2s.Remove(service2);
1462: }
1463: }
1464:
1465: db.SaveChanges();
1466:
1467: isOk = true;
1468: }
1469:
1470: return isOk;
1471: }
1472: */
1473:
1474: ////////////////////////////////////////////////////////////////////////////
1475:
1476: /// <summary>
1477: ///
1478: /// </summary>
1479: public static List<int> AllPossibleGatewayIdList
1480: {
1481: get
1482: {
1483: // below: GwId are defined by Nokia
1484:
1485: List<int> allPossibleGatewayIdList;
1486:
1487: allPossibleGatewayIdList = new List<int>(Ia.Ftn.Cl.Models.Business.Nokia.Ims.LastGatewayId - Ia.Ftn.Cl.Models.Business.Nokia.Ims.FirstGatewayId);
1488:
1489: //allPossibleGatewayIdList = Ia.Ftn.Cl.Model.Data.Nokia.Default.GatewayIdList;
1490:
1491: for (int i = Ia.Ftn.Cl.Models.Business.Nokia.Ims.FirstGatewayId; i <= Ia.Ftn.Cl.Models.Business.Nokia.Ims.LastGatewayId; i++)
1492: {
1493: allPossibleGatewayIdList.Add(i);
1494: }
1495:
1496: return allPossibleGatewayIdList;
1497: }
1498: }
1499:
1500: ////////////////////////////////////////////////////////////////////////////
1501:
1502: /// <summary>
1503: ///
1504: /// </summary>
1505: public static List<Ia.Ftn.Cl.Models.Ont> AllPossibleOntNotInAgcfGatewayRecordList(Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Olt olt)
1506: {
1507: DiscrepancyBetweenOntListAndAgctGatewayRecordList(olt, out List<Ia.Ftn.Cl.Models.Ont> ontsNotInAgcfGatewayRecordsList, out List<Ia.Ftn.Cl.Models.Nokia.AgcfGatewayRecord> agcfGatewayRecordsNoInOntsList);
1508:
1509: return ontsNotInAgcfGatewayRecordsList;
1510: }
1511:
1512: ////////////////////////////////////////////////////////////////////////////
1513:
1514: /// <summary>
1515: ///
1516: /// </summary>
1517: public static List<Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Ont> NddOntNotInAgcfGatewayRecordList(Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Olt olt)
1518: {
1519: List<Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Ont> ontList;
1520: List<Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Ont> ftnOntsNotInAgcfGatewayRecordsList;
1521: List<Ia.Ftn.Cl.Models.Nokia.AgcfGatewayRecord> agcfGatewayRecordList;
1522:
1523: // below: FTN ONT list
1524: ontList = (from o in Ia.Ftn.Cl.Models.Data.NetworkDesignDocument.OntList
1525: where o.Pon.PonGroup.Olt.Id == olt.Id
1526: select o).ToList();
1527:
1528: using (var db = new Ia.Ftn.Cl.Db())
1529: {
1530: // below: AgcfGatewayRecord list
1531: agcfGatewayRecordList = (from a in db.AgcfGatewayRecords select a).AsNoTracking().ToList();
1532: }
1533:
1534: // below: ONTs not in AgcfGatewayRecord list
1535: ftnOntsNotInAgcfGatewayRecordsList = (from no in ontList
1536: join a in agcfGatewayRecordList on no.Ip equals a.IP1
1537: into gj
1538: from sub in gj.DefaultIfEmpty()
1539: where sub == null
1540: select no).ToList();
1541:
1542: return ftnOntsNotInAgcfGatewayRecordsList;
1543: }
1544:
1545: ////////////////////////////////////////////////////////////////////////////
1546:
1547: /// <summary>
1548: ///
1549: /// </summary>
1550: public static List<Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Ont> NddNokiaSwitchOntInNonSipOltWithAccessButNoAgcfGatewayRecordList()
1551: {
1552: var accessIdDictionary = Ia.Ftn.Cl.Models.Data.Access.IdDictionary;
1553:
1554: var ontList = Ia.Ftn.Cl.Models.Data.NetworkDesignDocument.OntList;
1555:
1556: var nddOntWithinAccessList = (from o in ontList
1557: where o.Pon.PonGroup.Olt.IsSip == false
1558: && o.Pon.PonGroup.Olt.Odf.Router.Vendor == Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Vendor.Nokia
1559: && accessIdDictionary.ContainsKey(o.Access.Id)
1560: //&& accessIdList.Contains(o.Access.Id) // very slow
1561: select o).ToList();
1562:
1563: var agcfGatewayRecordIp1List = Ia.Ftn.Cl.Models.Data.Nokia.AgcfGatewayRecord.IpList();
1564:
1565: // below: ONTs in Accesses but not in AgcfGatewayRecord list
1566: var nddOntList = (from no in nddOntWithinAccessList
1567: join grip1 in agcfGatewayRecordIp1List on no.Ip equals grip1
1568: into gj
1569: from sub in gj.DefaultIfEmpty()
1570: where sub == null
1571: select no).ToList();
1572:
1573: return nddOntList;
1574: }
1575:
1576: ////////////////////////////////////////////////////////////////////////////
1577:
1578: /// <summary>
1579: ///
1580: /// </summary>
1581: public static List<Ia.Ftn.Cl.Models.Nokia.AgcfGatewayRecord> AgcfGatewayRecordWithNoNddNokiaSwitchOntInNonSipOltAndNullOrEmptyAgcfEndpointList()
1582: {
1583: List<string> accessIdList;
1584: List<Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Ont> ontList, nddOntWithNoAccessList;
1585: List<Ia.Ftn.Cl.Models.Nokia.AgcfGatewayRecord> agcfGatewayRecordList, agcfGatewayRecordWithNoNddOntList, agcfGatewayRecordWithNoNddOntAccessList;
1586: List<Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Ont> nokiaSwitchOntInNonSipOltList;
1587:
1588: using (var db = new Ia.Ftn.Cl.Db())
1589: {
1590: accessIdList = (from a in db.Accesses select a.Id).AsNoTracking().ToList();
1591:
1592: agcfGatewayRecordList = (from a in db.AgcfGatewayRecords
1593: select a)/*.Include(u => u.AgcfEndpoints)*/.AsNoTracking().ToList();
1594:
1595: ontList = Ia.Ftn.Cl.Models.Data.NetworkDesignDocument.OntList;
1596:
1597: nokiaSwitchOntInNonSipOltList = (from o in ontList
1598: where o.Pon.PonGroup.Olt.IsSip == false
1599: && o.Pon.PonGroup.Olt.Odf.Router.Vendor == Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Vendor.Nokia
1600: select o).ToList();
1601:
1602: // below: AgcfGatewayRecord with no corresponding NDD ONT entries
1603: agcfGatewayRecordWithNoNddOntList = (from gr in agcfGatewayRecordList
1604: join no in nokiaSwitchOntInNonSipOltList
1605: on gr.IP1 equals no.Ip
1606: into gj
1607: from sub in gj.DefaultIfEmpty()
1608: where sub == null
1609: select gr).ToList();
1610:
1611: // below: NDD ONTs with no access
1612: nddOntWithNoAccessList = (from o in nokiaSwitchOntInNonSipOltList
1613: join a in accessIdList on o.Access.Id equals a
1614: into gj
1615: from sub in gj.DefaultIfEmpty()
1616: where sub == null
1617: select o).ToList();
1618:
1619: // below: AgcfGatewayRecord with no corresponding NDD ONT access entries
1620: agcfGatewayRecordWithNoNddOntAccessList = (from gr in agcfGatewayRecordList
1621: join no in nddOntWithNoAccessList
1622: on gr.IP1 equals no.Ip
1623: select gr).ToList();
1624: }
1625:
1626: return agcfGatewayRecordWithNoNddOntList.Union(agcfGatewayRecordWithNoNddOntAccessList).ToList();
1627: }
1628:
1629: ////////////////////////////////////////////////////////////////////////////
1630:
1631: /// <summary>
1632: ///
1633: /// </summary>
1634: public static List<Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Ont> NddOntWithAgcfGatewayRecordAndNotEmptyAgcfEndpointAndNullAccessList()
1635: {
1636: List<string> accessIdList;
1637: List<Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Ont> nddOntWithNoAccessList, nddOntWithAgcfGatewayRecordAndNotEmptyAgcfEndpointAndNullAccessList;
1638: List<Ia.Ftn.Cl.Models.Nokia.AgcfGatewayRecord> agcfGatewayRecordList, agcfGatewayRecordWithNddOntAndNotEmptyAgcfEndpointList;
1639:
1640: using (var db = new Ia.Ftn.Cl.Db())
1641: {
1642: accessIdList = (from a in db.Accesses select a.Id).AsNoTracking().ToList();
1643:
1644: agcfGatewayRecordList = (from a in db.AgcfGatewayRecords select a).Include(u => u.AgcfEndpoints).AsNoTracking().ToList();
1645:
1646: // below: AgcfGatewayRecord with corresponding NDD ONT entries and not empty AgcfEndpoints
1647: agcfGatewayRecordWithNddOntAndNotEmptyAgcfEndpointList = (from gr in agcfGatewayRecordList
1648: join no in Ia.Ftn.Cl.Models.Data.NetworkDesignDocument.OntList
1649: on gr.IP1 equals no.Ip
1650: where gr.AgcfEndpoints != null && gr.AgcfEndpoints.Count > 0
1651: select gr).ToList();
1652:
1653: // below: NDD ONTs with no access
1654: nddOntWithNoAccessList = (from o in Ia.Ftn.Cl.Models.Data.NetworkDesignDocument.OntList
1655: join a in accessIdList on o.Access.Id equals a
1656: into gj
1657: from sub in gj.DefaultIfEmpty()
1658: where sub == null
1659: select o).ToList();
1660:
1661: // below: AgcfGatewayRecord with corresponding NDD ONT entries and not empty AgcfEndpoints, but with no corresponding NDD ONT access entries
1662: nddOntWithAgcfGatewayRecordAndNotEmptyAgcfEndpointAndNullAccessList = (from no in nddOntWithNoAccessList
1663: join gr in agcfGatewayRecordList
1664: on no.Ip equals gr.IP1
1665: select no).ToList();
1666: }
1667:
1668: return nddOntWithAgcfGatewayRecordAndNotEmptyAgcfEndpointAndNullAccessList.ToList();
1669: }
1670:
1671: ////////////////////////////////////////////////////////////////////////////
1672:
1673: /// <summary>
1674: ///
1675: /// </summary>
1676: public static List<Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Ont> NddOntWithNoAccessList()
1677: {
1678: List<string> accessIdList;
1679: List<Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Ont> nddOntList;
1680:
1681: using (var db = new Ia.Ftn.Cl.Db())
1682: {
1683: accessIdList = (from a in db.Accesses select a.Id).AsNoTracking().ToList();
1684:
1685: // below:
1686: nddOntList = (from o in Ia.Ftn.Cl.Models.Data.NetworkDesignDocument.OntList
1687: join a in accessIdList on o.Access.Id equals a
1688: into gj
1689: from sub in gj.DefaultIfEmpty()
1690: where sub == null
1691: select o).ToList();
1692: }
1693:
1694: return nddOntList;
1695: }
1696:
1697: ////////////////////////////////////////////////////////////////////////////
1698:
1699: /// <summary>
1700: ///
1701: /// </summary>
1702: public static List<Ia.Ftn.Cl.Models.Nokia.AgcfGatewayRecord> AllPossibleAgcfGatewayRecordsNoInOntsList(Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Olt olt)
1703: {
1704: DiscrepancyBetweenOntListAndAgctGatewayRecordList(olt, out List<Ia.Ftn.Cl.Models.Ont> ontsNotInAgcfGatewayRecordsList, out List<Ia.Ftn.Cl.Models.Nokia.AgcfGatewayRecord> agcfGatewayRecordsNoInOntsList);
1705:
1706: return agcfGatewayRecordsNoInOntsList;
1707: }
1708:
1709: ////////////////////////////////////////////////////////////////////////////
1710:
1711: /// <summary>
1712: ///
1713: /// </summary>
1714: private static void DiscrepancyBetweenOntListAndAgctGatewayRecordList(Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Olt olt, out List<Ia.Ftn.Cl.Models.Ont> ontsNotInAgcfGatewayRecordsList, out List<Ia.Ftn.Cl.Models.Nokia.AgcfGatewayRecord> agcfGatewayRecordsNoInOntsList)
1715: {
1716: List<Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Ont> ontList;
1717: List<Ia.Ftn.Cl.Models.Ont> ftnOntList;
1718: List<Ia.Ftn.Cl.Models.Nokia.AgcfGatewayRecord> agcfGatewayRecordList;
1719:
1720: // below: FTN ONT list
1721: ontList = (from o in Ia.Ftn.Cl.Models.Data.NetworkDesignDocument.OntList
1722: where o.Pon.PonGroup.Olt.Id == olt.Id
1723: select o).ToList();
1724:
1725: using (var db = new Ia.Ftn.Cl.Db())
1726: {
1727: // below: ONT list
1728: ftnOntList = (from o in db.Onts
1729: where o.Access != null && o.Access.Olt == olt.Id
1730: select o).AsNoTracking().ToList();
1731:
1732: // below: AgcfGatewayRecord list
1733: agcfGatewayRecordList = (from a in db.AgcfGatewayRecords select a).AsNoTracking().ToList();
1734: }
1735:
1736: // below: ONTs not in AgcfGatewayRecord list
1737: ontsNotInAgcfGatewayRecordsList = (from o in ftnOntList
1738: join no in ontList on o.Id equals no.Id
1739: join a in agcfGatewayRecordList on no.Ip equals a.IP1
1740: into gj
1741: from sub in gj.DefaultIfEmpty()
1742: where sub == null
1743: select o).ToList();
1744:
1745: // below: AgcfGatewayRecords with IPs that are not in FTN ONT list
1746: agcfGatewayRecordsNoInOntsList = (from a in agcfGatewayRecordList
1747: join no in ontList on a.IP1 equals no.Ip
1748: into gj
1749: from sub in gj.DefaultIfEmpty()
1750: where sub == null
1751: select a).ToList();
1752:
1753: }
1754:
1755: ////////////////////////////////////////////////////////////////////////////
1756:
1757: /// <summary>
1758: ///
1759: /// </summary>
1760: private static List<Ia.Ftn.Cl.Models.Nokia.AgcfEndpoint> AgcfEndpointsWithNoSubPartyReferenceList
1761: {
1762: get
1763: {
1764: List<Ia.Ftn.Cl.Models.Nokia.AgcfEndpoint> agcfEndpointList;
1765:
1766: using (var db = new Ia.Ftn.Cl.Db())
1767: {
1768: agcfEndpointList = (from e in db.AgcfEndpoints
1769: join s in db.SubParties on e equals s.AgcfEndpoint
1770: into gj
1771: from u in gj.DefaultIfEmpty()
1772: where u == null
1773: select e).ToList();
1774: }
1775:
1776: return agcfEndpointList;
1777: }
1778: }
1779:
1780: ////////////////////////////////////////////////////////////////////////////
1781:
1782: /// <summary>
1783: ///
1784: /// </summary>
1785: public static List<string> ServiceProvisionedManuallyWithNonStandardHenceNotFunctionalPartyIdNames
1786: {
1787: get
1788: {
1789: List<string> list;
1790:
1791: list = new List<string>();
1792:
1793: using (var db = new Ia.Ftn.Cl.Db())
1794: {
1795: // exclude 1-800 numbers and numbers without AgcfEndpoints
1796:
1797: // select Id from Subscribers where Id not like '+965________'
1798: var subscriberSubpartyIdList = (from s in db.Subscribers where !(s.Id.StartsWith("+965") && s.Id.Length == 12) && !s.Id.StartsWith("+96518") select s.SubParty.Id).ToList();
1799:
1800: // select DisplayName,PartyId from SubParties where AgcfEndpoint_Id not like 'priv____________'
1801: var subPartyIdList = (from sp in db.SubParties where !(sp.AgcfEndpoint.Id.StartsWith("priv") && sp.AgcfEndpoint.Id.Length == 16) && !sp.Id.StartsWith("+96518") && sp.AgcfEndpoint != null select sp.Id).ToList();
1802:
1803: // select PrividUser, GwId from AgcfEndpoints where Id not like 'priv____________'
1804: var agcfEndpointDnList = (from ep in db.AgcfEndpoints where !(ep.Id.StartsWith("priv") && ep.Id.Length == 16) && !ep.Dn.StartsWith("+96518") select ep.Dn).ToList();
1805:
1806: list.AddRange(subscriberSubpartyIdList);
1807: list.AddRange(subPartyIdList);
1808: list.AddRange(agcfEndpointDnList);
1809: }
1810:
1811: return list;
1812: }
1813: }
1814:
1815: ////////////////////////////////////////////////////////////////////////////
1816: ////////////////////////////////////////////////////////////////////////////
1817:
1818: /// <summary>
1819: ///
1820: /// </summary>
1821: public static List<string> AgcfGatewayRecordIp1sWithinWhichSubPartiesHaveServiceBundle2CategoryList
1822: {
1823: get
1824: {
1825: if (agcfGatewayRecordIp1sWithinWhichSubPartiesHaveServiceBundle2CategoryList == null || agcfGatewayRecordIp1sWithinWhichSubPartiesHaveServiceBundle2CategoryList.Count == 0)
1826: {
1827: lock (objectLock)
1828: {
1829: agcfGatewayRecordIp1sWithinWhichSubPartiesHaveServiceBundle2CategoryList = Ia.Ftn.Cl.Models.Data.Nokia.Ims._AgcfGatewayRecordIp1sWithinWhichSubPartiesHaveServiceBundle2CategoryList;
1830: }
1831: }
1832:
1833: return agcfGatewayRecordIp1sWithinWhichSubPartiesHaveServiceBundle2CategoryList;
1834: }
1835: }
1836:
1837: ////////////////////////////////////////////////////////////////////////////
1838:
1839: /// <summary>
1840: ///
1841: /// </summary>
1842: private static List<string> _AgcfGatewayRecordIp1sWithinWhichSubPartiesHaveServiceBundle2CategoryList
1843: {
1844: get
1845: {
1846: using (var db = new Ia.Ftn.Cl.Db())
1847: {
1848: agcfGatewayRecordIp1sWithinWhichSubPartiesHaveServiceBundle2CategoryList = (from sp in db.SubParties
1849: where sp.Category == "SERVICEBUNDLE2"
1850: join e in db.AgcfEndpoints on sp.AgcfEndpoint.Id equals e.Id
1851: join gr in db.AgcfGatewayRecords on e.AgcfGatewayRecord.Id equals gr.Id
1852: select gr.IP1).Distinct().ToList();
1853:
1854: /*
1855: select distinct gr.IP1 from AgcfGatewayRecords gr
1856: left outer join AgcfEndpoints ep on ep.AgcfGatewayRecord_Id = gr.Id
1857: left outer join SubParties sp on sp.AgcfEndpoint_Id = ep.Id
1858: where sp.Category = 'SERVICEBUNDLE2'
1859: */
1860: }
1861:
1862: return agcfGatewayRecordIp1sWithinWhichSubPartiesHaveServiceBundle2CategoryList;
1863: }
1864: }
1865:
1866: ////////////////////////////////////////////////////////////////////////////
1867: ////////////////////////////////////////////////////////////////////////////
1868:
1869: /// <summary>
1870: ///
1871: /// </summary>
1872: public static List<string> AgcfGatewayRecordIp1sThatIndicateFsdb0List
1873: {
1874: get
1875: {
1876: if (agcfGatewayRecordIp1sThatIndicateFsdb0List == null || agcfGatewayRecordIp1sThatIndicateFsdb0List.Count == 0)
1877: {
1878: lock (objectLock)
1879: {
1880: agcfGatewayRecordIp1sThatIndicateFsdb0List = Ia.Ftn.Cl.Models.Data.Nokia.Ims._AgcfGatewayRecordIp1sThatIndicateFsdb0List;
1881: }
1882: }
1883:
1884: return agcfGatewayRecordIp1sThatIndicateFsdb0List;
1885: }
1886: }
1887:
1888: ////////////////////////////////////////////////////////////////////////////
1889:
1890: /// <summary>
1891: ///
1892: /// </summary>
1893: private static List<string> _AgcfGatewayRecordIp1sThatIndicateFsdb0List
1894: {
1895: get
1896: {
1897: using (var db = new Ia.Ftn.Cl.Db())
1898: {
1899: agcfGatewayRecordIp1sThatIndicateFsdb0List = (from gr in db.AgcfGatewayRecords where gr.AgcfSipIaPort == "agcf-stdn.imsgroup0-000" select gr.IP1).Distinct().ToList();
1900:
1901: // select distinct IP1 from AgcfGatewayRecords where AgcfSipIaPort = 'agcf-stdn.imsgroup0-000'
1902: }
1903:
1904: return agcfGatewayRecordIp1sThatIndicateFsdb0List;
1905: }
1906: }
1907:
1908: ////////////////////////////////////////////////////////////////////////////
1909: ////////////////////////////////////////////////////////////////////////////
1910: }
1911:
1912: ////////////////////////////////////////////////////////////////////////////
1913: ////////////////////////////////////////////////////////////////////////////
1914: }
- AccessController (Ia.Ftn.Api.Wa.Controllers) : Access API Controller class of Fixed Telecommunications Network (FTN) model.
- AuthorizationHeaderHandler () : AuthorizationHeaderHandler class of Fixed Telecommunications Network (FTN) model.
- Default2Controller (Ia.Ftn.Api.Wa.Controllers) : Default API Controller class of Fixed Telecommunications Network (FTN) model.
- EncryptionController (Ia.Ftn.Api.Wa.Controllers) : Cryptography, Encryption Controller
- MaintenanceController (Ia.Ftn.Api.Wa.Controllers) : Maintenance API Controller class of Fixed Telecommunications Network (FTN) model.
- ServiceController (Ia.Ftn.Api.Wa.Controllers) : Service API Controller class of Fixed Telecommunications Network (FTN) model.
- ServiceRequestAdministrativeIssueController (Ia.Ftn.Api.Wa.Controllers) : Service Request Administrative Issue API Controller class of Fixed Telecommunications Network (FTN) model.
- ServiceRequestController (Ia.Ftn.Api.Wa.Controllers) : Service Request API Controller class of Fixed Telecommunications Network (FTN) model.
- ServiceRequestTypeController (Ia.Ftn.Api.Wa.Controllers) : Service Request Type API Controller class of Fixed Telecommunications Network (FTN) model.
- Mouse (Ia.Cl.Model) : Windows mouse movements and properties control support class.
- Winapi (Ia.Cl.Model) : WINAPI click events support class.
- Identity (Ia.Ftn.Cl.Models) : ASP.NET Identity support class.
- Access (Ia.Ftn.Cl.Models) : Access Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
- ApplicationOperator (Ia.Cl.Models) : ApplicationOperator
- Access (Ia.Ftn.Cl.Models.Business) : Access support class for Fixed Telecommunications Network (FTN) business model.
- AccessIdNddOntEmsInformation (Ia.Ftn.Cl.Models.Business) : Access Id Access name DEV FN SN PN ONT Id ONT IP Service Port support class of Fixed Telecommunications Network (FTN) business model.
- Address (Ia.Ftn.Cl.Models.Business) : Address Framework class for Fixed Telecommunications Network (FTN) business model.
- Administration (Ia.Ftn.Cl.Models.Business) : Administration support class of Fixed Telecommunications Network (FTN) business model.
- Default (Ia.Ftn.Cl.Models.Business.Application) : Default Application network information support class for the Fixed Telecommunications Network business model
- Authority (Ia.Ftn.Cl.Models.Business) : Authority support class of Fixed Telecommunications Network (FTN) business model.
- Configuration (Ia.Ftn.Cl.Models.Business) : Configuration Framework class for Fixed Telecommunications Network (FTN) business model.
- Contact (Ia.Ftn.Cl.Models.Business) : Contact support class of Fixed Telecommunications Network (FTN) business model.
- Default (Ia.Ftn.Cl.Models.Business) : Default general support class of Fixed Telecommunications Network (FTN) business model.
- Axe (Ia.Ftn.Cl.Models.Business.Ericsson) : Ericsson AXE support class of Fixed Telecommunications Network (FTN) business model.
- Subscriber (Ia.Ftn.Cl.Models.Business.Ericsson) : AXE Subscriber support class for Fixed Telecommunications Network (FTN) business model.
- Heartbeat (Ia.Ftn.Cl.Models.Business) : Heartbeat information support class for the Fixed Telecommunications Network business model
- Asbr (Ia.Ftn.Cl.Models.Business.Huawei) : AGCF Users (ASBR) support class for Huawei's Fixed Telecommunications Network (FTN) business model.
- Board (Ia.Ftn.Cl.Models.Business.Huawei) : Huawei's Board support class of Fixed Telecommunications Network (FTN) business model.
- Default (Ia.Ftn.Cl.Models.Business.Huawei) : Defaul general support class for Huawei's Fixed Telecommunications Network (FTN) business model.
- Dev (Ia.Ftn.Cl.Models.Business.Huawei) : Huawei's Dev support class of Fixed Telecommunications Network (FTN) business model.
- Ems (Ia.Ftn.Cl.Models.Business.Huawei) : Element Management System (EMS) support class for Huawei's Fixed Telecommunications Network (FTN) business model.
- Ims (Ia.Ftn.Cl.Models.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.Models.Business.Huawei) : Media Gateway (MGW) support class for Huawei's Fixed Telecommunications Network (FTN) business model.
- Nce (Ia.Ftn.Cl.Models.Business.Huawei) : Fixed Telecommunications Network's Operations Support System Management Intranet (FTN OSS) support class for Huawei's Fixed Telecommunications Network (FTN) business model
- Ont (Ia.Ftn.Cl.Models.Business.Huawei) : Huawei's Ont support class of Fixed Telecommunications Network (FTN) business model.
- OntSipInfo (Ia.Ftn.Cl.Models.Business.Huawei) : Huawei's EMS ONT SIP Info 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.Models.Business.Huawei) : Huawei's OwSbr Entity Framework class for Fixed Telecommunications Network (FTN) business model.
- Port (Ia.Ftn.Cl.Models.Business.Huawei) : Huawei's Port support class of Fixed Telecommunications Network (FTN) business model.
- Sbr (Ia.Ftn.Cl.Models.Business.Huawei) : Huawei's Sbr Entity Framework class for Fixed Telecommunications Network (FTN) business model.
- Seruattr (Ia.Ftn.Cl.Models.Business.Huawei) : SERUATTR Signaling Service Processing System (SPS) support class for Huawei's Fixed Telecommunications Network (FTN) business model.
- SoftX (Ia.Ftn.Cl.Models.Business.Huawei) : U2020 Northbound Interface IP (SoftX) support class for Huawei's Fixed Telecommunications Network (FTN) business model.
- Sps (Ia.Ftn.Cl.Models.Business.Huawei) : Signaling Service Processing System (SPS) support class for Huawei's Fixed Telecommunications Network (FTN) business model.
- Vag (Ia.Ftn.Cl.Models.Business.Huawei) : Huawei's EMS VAG Entity Framework class for Fixed Telecommunications Network (FTN) business model.
- VoipPstnUser (Ia.Ftn.Cl.Models.Business.Huawei) : Huawei's EMS VOIP PSTN User support class of Fixed Telecommunications Network (FTN) business model.
- Ims (Ia.Ftn.Cl.Models.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.Models.Business) : IP support class of Fixed Telecommunications Network (FTN) business model.
- Mail (Ia.Ftn.Cl.Models.Business) : Mail process support class of Fixed Telecommunications Network (FTN) business model.
- Default (Ia.Ftn.Cl.Models.Business.Maintenance) : Default maintenance network information support class for the Fixed Telecommunications Network business model
- Find (Ia.Ftn.Cl.Models.Business.Maintenance) : Find subscriber and network information support class for the Fixed Telecommunications Network business model
- Script (Ia.Ftn.Cl.Models.Business.Maintenance) : Script support class for Fixed Telecommunications Network (FTN) class library model.
- Task (Ia.Ftn.Cl.Models.Business.Maintenance) : Execute backend task support class for the Fixed Telecommunications Network business model
- DatabaseInformation (Ia.Ftn.Mdaa.Cl.Models.Business) : DatabaseInformation support class for Ministry Database Analysis Application business model.
- Default (Ia.Ftn.Cl.Models.Business.Mdaa) : Default mdaa network information support class for the Fixed Telecommunications Network business model
- MinistryDatabase (Ia.Ftn.Cl.Models.Business.Mdaa) : MinistryDatabase support class for Fixed Telecommunications Network (FTN) business model.
- TableInformation (Ia.Ftn.Mdaa.Cl.Models.Business) : TableInformation support class for Ministry Database Analysis Application business model.
- MessageQueue (Ia.Ftn.Cl.Models.Business) : MessageQueue support class for Fixed Telecommunications Network (FTN) business model.
- Migration (Ia.Ftn.Cl.Models.Business) : Migration support class of Fixed Telecommunications Network (FTN) business model.
- NetworkDesignDocument (Ia.Ftn.Cl.Models.Business) : Network Design Document support class for Fixed Telecommunications Network (FTN) business model.
- AgcfEndpoint (Ia.Ftn.Cl.Models.Business.Nokia) : AGCF Endpoint support class for Nokia's Fixed Telecommunications Network (FTN) business model.
- AgcfGatewayRecord (Ia.Ftn.Cl.Models.Business.Nokia) : AGCF Gateway Records support class for Nokia's Fixed Telecommunications Network (FTN) business model.
- AgcfGatewayTable (Ia.Ftn.Cl.Models.Business.Nokia) : AGCF Gateway Table support class for Nokia's Fixed Telecommunications Network (FTN) business model.
- Ams (Ia.Ftn.Cl.Models.Business.Nokia) : Access Management System (AMS) support class for Nokia's Fixed Telecommunications Network (FTN) business model.
- AmsTransaction (Ia.Ftn.Cl.Models.Nokia.Business) : Nokia AmsTransaction Entity Framework class for Fixed Telecommunications Network (FTN) business model.
- Ims (Ia.Ftn.Cl.Models.Business.Nokia) : Fixed Telecommunications Network's Operations Support System Management Intranet (FTN OSS) support class for Nokia's Fixed Telecommunications Network (FTN) business model.
- Ont (Ia.Ftn.Cl.Models.Business.Nokia) : ONT support class of Fixed Telecommunications Network (FTN) Nokia business model.
- OntOntPots (Ia.Ftn.Cl.Models.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.Models.Business.Nokia) : ONT-SERVICEVOIP support class of Fixed Telecommunications Network (FTN) Nokia business model.
- Sdc (Ia.Ftn.Cl.Models.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.Models.Business.Nokia) : SubParty support class for Nokia's Fixed Telecommunications Network (FTN) business model.
- Subscriber (Ia.Ftn.Cl.Models.Business.Nokia) : Subscriber support class for Nokia's Fixed Telecommunications Network (FTN) business model.
- Procedure (Ia.Ftn.Cl.Models.Business) : Provision support class of Fixed Telecommunications Network (FTN) business model.
- Provision (Ia.Ftn.Cl.Models.Business) : Provision support class of Fixed Telecommunications Network (FTN) business model.
- Report (Ia.Ftn.Cl.Models.Business) : Report support class of Fixed Telecommunications Network (FTN) business model.
- Secretary (Ia.Ftn.Cl.Models.Business) : Secretary support class of Fixed Telecommunications Network (FTN) business model.
- Service (Ia.Ftn.Cl.Models.Business) : Service support class of Fixed Telecommunications Network (FTN) business model.
- Service2 (Ia.Ftn.Cl.Models.Business) : Service Entity Framework class for Fixed Telecommunications Network (FTN) business model.
- ServiceAddress (Ia.Ftn.Cl.Models.Business) : ServiceAddress Framework class for Fixed Telecommunications Network (FTN) business model.
- ServiceRequest (Ia.Ftn.Cl.Models.Business) : Service Request support class of Fixed Telecommunications Network (FTN) business model.
- ServiceRequestAdministrativeIssue (Ia.Ftn.Cl.Models.Business) : Service Request Administrative Issue support class of Fixed Telecommunications Network (FTN) business model.
- ServiceRequestHistory (Ia.Ftn.Cl.Models.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.
- ServiceRequestOnt (Ia.Ftn.Cl.Models.Business) : Service Request Ont support class of Fixed Telecommunications Network (FTN) business model.
- ServiceRequestOntDetail (Ia.Ftn.Cl.Models.Business) : Service Request Ont Detail support class of Fixed Telecommunications Network (FTN) business model.
- ServiceRequestService (Ia.Ftn.Cl.Models.Business) : Service Request Service support class of Fixed Telecommunications Network (FTN) business model.
- ServiceRequestStatisticalVariable (Ia.Ftn.Cl.Models.Business) : ServiceRequestStatisticalVariable support class of Fixed Telecommunications Network (FTN) business model.
- ServiceRequestType (Ia.Ftn.Cl.Models.Business) : Service Request Type support class of Fixed Telecommunications Network (FTN) business model.
- ServiceSerialRequestService (Ia.Ftn.Cl.Models.Business) : Service Serial Request Service support class of Fixed Telecommunications Network (FTN) business model.
- ServiceServiceRequestOnt (Ia.Ftn.Cl.Models.Business) : ServiceServiceRequestOnt support class for Fixed Telecommunications Network (FTN) business model.
- Ewsd (Ia.Ftn.Cl.Models.Business.Siemens) : Nokia's Siemens EWSD support class of Fixed Telecommunications Network (FTN) business model.
- Subscriber (Ia.Ftn.Cl.Models.Business.Siemens) : EWSD Subscriber support class for Fixed Telecommunications Network (FTN) business model.
- Transction (Ia.Ftn.Cl.Models.Business) : Transction support class of Fixed Telecommunications Network (FTN) business model.
- Axe (Ia.Ftn.Cl.Models.Client.Ericsson) : Ericsson's AXE support class for Ericsson's PSTN Exchange Migration to Fixed Telecommunications Network (FTN) client model.
- Ems (Ia.Ftn.Cl.Models.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.Models.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.Models.Client.Huawei) : U2020 Northbound Interface IP (SoftX) support class for Huawei's Fixed Telecommunications Network (FTN) client model.
- Sps (Ia.Ftn.Cl.Models.Client.Huawei) : Signaling Service Processing System (SPS) support class for Huawei's Fixed Telecommunications Network (FTN) SPS client model.
- Ams (Ia.Ftn.Cl.Models.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.Models.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.Models.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.
- TelnetModel (Ia.Ftn.Cl.Models.Client) : This class encapsulates the Model part of the Model-View-Controller design pattern, and is used by samples that utilize the PowerTCP Telnet component (part of the Emulation for .NET and Telnet for .NET products). This class can be added to additional applications without the need for cut-and-paste. Note that because this class is used in both the Emulation and Telnet product samples, a compile-time directive indicates which namespace to use (Dart.Emulation or Dart.Telnet).
- Contact (Ia.Ftn.Cl.Models) : Contact Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
- Access (Ia.Ftn.Cl.Models.Data) : Access support class for Fixed Telecommunications Network (FTN) data model.
- Administration (Ia.Ftn.Cl.Models.Data) : Administration support class for Fixed Telecommunications Network (FTN) data model.
- Contact (Ia.Ftn.Cl.Models.Data) : Contact Entity Framework class for Fixed Telecommunications Network (FTN) data model.
- Default (Ia.Ftn.Cl.Models.Data) : Default support class for Fixed Telecommunications Network (FTN) data model.
- Axe (Ia.Ftn.Cl.Models.Data.Ericsson) : Ericsson AXE support class of Fixed Telecommunications Network (FTN) data model.
- Subscriber (Ia.Ftn.Cl.Models.Data.Ericsson) : AXE Subscriber support class for Fixed Telecommunications Network (FTN) data model.
- Event (Ia.Ftn.Cl.Models.Data) : Nokia AMS Event support class for Fixed Telecommunications Network (FTN) data model.
- Guide (Ia.Ftn.Cl.Models.Data) : Guide support class for Fixed Telecommunications Network (FTN) data model.
- Help (Ia.Ftn.Cl.Models.Data) : Help class for Fixed Telecommunications Network (FTN) data model.
- Asbr (Ia.Ftn.Cl.Models.Data.Huawei) : AGCF Users (ASBR) support class for Huawei's Fixed Telecommunications Network (FTN) data model.
- Board (Ia.Ftn.Cl.Models.Data.Huawei) : Huawei's Board support class of Fixed Telecommunications Network (FTN) data model.
- Default (Ia.Ftn.Cl.Models.Data.Huawei) : Defaul general support class for Huawei's Fixed Telecommunications Network (FTN) data model.
- Dev (Ia.Ftn.Cl.Models.Data.Huawei) : Huawei's Dev support class of Fixed Telecommunications Network (FTN) data model.
- Ems (Ia.Ftn.Cl.Models.Data.Huawei) : Access Management System (AMS) support class for Huawei's Fixed Telecommunications Network (FTN) data model.
- Ims (Ia.Ftn.Cl.Models.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.Models.Data.Huawei) : Media Gateway (MGW) support class for Huawei's Fixed Telecommunications Network (FTN) data model.
- Ont (Ia.Ftn.Cl.Models.Data.Huawei) : Huawei's Ont support class of Fixed Telecommunications Network (FTN) data model.
- OntSipInfo (Ia.Ftn.Cl.Models.Data.Huawei) : Huawei's EMS ONT SIP INFO 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.Models.Data.Huawei) : Huawei's Owsbr Entity Framework class for Fixed Telecommunications Network (FTN) data model.
- Port (Ia.Ftn.Cl.Models.Data.Huawei) : Huawei's Port support class of Fixed Telecommunications Network (FTN) data model.
- Sbr (Ia.Ftn.Cl.Models.Data.Huawei) : Huawei's Sbr Entity Framework class for Fixed Telecommunications Network (FTN) data model.
- Seruattr (Ia.Ftn.Cl.Models.Data.Huawei) : SERUATTR Signaling Service Processing System (SPS) support class for Huawei's Fixed Telecommunications Network (FTN) data model.
- SoftX (Ia.Ftn.Cl.Models.Data.Huawei) : U2020 Northbound Interface IP (SoftX) support class for Huawei's Fixed Telecommunications Network (FTN) data model.
- Sps (Ia.Ftn.Cl.Models.Data.Huawei) : Signaling Service Processing System (SPS) support class for Huawei's Fixed Telecommunications Network (FTN) data model.
- Vag (Ia.Ftn.Cl.Models.Data.Huawei) : Huawei's EMS VAG Entity Framework class for Fixed Telecommunications Network (FTN) data model.
- VoipPstnUser (Ia.Ftn.Cl.Models.Data.Huawei) : Huawei's EMS VOIP PSTN User support class of Fixed Telecommunications Network (FTN) data model.
- Ims (Ia.Ftn.Cl.Models.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.Models.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.Models.Data.Maintenance) : Find subscriber and network information support class for the Fixed Telecommunications Network data model
- MinistryDatabase (Ia.Ftn.Cl.Models.Data) : MinistryDatabase support class for Fixed Telecommunications Network (FTN) data model.
- MessageQueue (Ia.Ftn.Cl.Models.Data) : MessageQueue support class for Fixed Telecommunications Network (FTN) data model.
- Migration (Ia.Ftn.Cl.Models.Data) : Migration support class of Fixed Telecommunications Network (FTN) data model.
- Miscellaneous (Ia.Ftn.Cl.Models.Data) : Miscellaneous Entity Framework class for Fixed Telecommunications Network (FTN) data model.
- NetworkDesignDocument (Ia.Ftn.Cl.Models.Data) : Network Design Document support class for Fixed Telecommunications Network (FTN) data model.
- AgcfEndpoint (Ia.Ftn.Cl.Models.Data.Nokia) : AGCF Endpoint support class for Nokia data model.
- AgcfGatewayRecord (Ia.Ftn.Cl.Models.Data.Nokia) : AGCF Gateway Records support class for Nokia data model.
- Ams (Ia.Ftn.Cl.Models.Data.Nokia) : Access Management System (AMS) support class for Nokia data model.
- AmsTransaction (Ia.Ftn.Cl.Models.Data.Nokia) : Nokia AmsTransaction Entity Framework class for Fixed Telecommunications Network (FTN) data model.
- Default (Ia.Ftn.Cl.Models.Data.Nokia) : Defaul general support class for Nokia's Fixed Telecommunications Network (FTN) data model.
- Ims (Ia.Ftn.Cl.Models.Data.Nokia) : Fixed Telecommunications Network's Operations Support System Management Intranet (FTN OSS) support class for Nokia's Fixed Telecommunications Network (FTN) data model.
- Ont (Ia.Ftn.Cl.Models.Data.Nokia) : ONT support class for Fixed Telecommunications Network (FTN) Nokia data model.
- OntOntPots (Ia.Ftn.Cl.Models.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.Models.Data.Nokia) : ONT-SERVICEVOIP support class for Fixed Telecommunications Network (FTN) Nokia data model.
- Sdc (Ia.Ftn.Cl.Models.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.Models.Data.Nokia) : SubParty support class for Nokia's Fixed Telecommunications Network (FTN) data model.
- Subscriber (Ia.Ftn.Cl.Models.Data.Nokia) : Subscriber Entity Framework class for Fixed Telecommunications Network (FTN) data model.
- Pots (Ia.Ftn.Cl.Models.Data) : POTS legacy support class for Fixed Telecommunications Network (FTN) data model.
- Provision (Ia.Ftn.Cl.Models.Data) : Provision support class for Fixed Telecommunications Network (FTN) data model.
- Report (Ia.Ftn.Cl.Models.Data) : Report support class for Fixed Telecommunications Network (FTN) data model.
- ReportHistory (Ia.Ftn.Cl.Models.Data) : Report History support class for Fixed Telecommunications Network (FTN) data model.
- Secretary (Ia.Ftn.Cl.Models.Data) : Secretary support class of Fixed Telecommunications Network (FTN) data model.
- Service (Ia.Ftn.Cl.Models.Data) : Service support class for Fixed Telecommunications Network (FTN) data model.
- Service2 (Ia.Ftn.Cl.Models.Data) : Service support class for Fixed Telecommunications Network (FTN) data model.
- ServiceExemption (Ia.Ftn.Cl.Models.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.
- ServiceRequest (Ia.Ftn.Cl.Models.Data) : Service Request support class for Fixed Telecommunications Network (FTN) data model.
- ServiceRequestAdministrativeIssue (Ia.Ftn.Cl.Models.Data) : Service Request Administrative Issue support class for Fixed Telecommunications Network (FTN) data model.
- ServiceRequestHistory (Ia.Ftn.Cl.Models.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.
- ServiceRequestOnt (Ia.Ftn.Cl.Models.Data) : Service Request Ont support class for Fixed Telecommunications Network (FTN) data model.
- ServiceRequestOntDetail (Ia.Ftn.Cl.Models.Data) : Service Request Ont Detail support class for Fixed Telecommunications Network (FTN) data model.
- ServiceRequestService (Ia.Ftn.Cl.Models.Data) : Service Request Service support class for Fixed Telecommunications Network (FTN) data model.
- ServiceRequestType (Ia.Ftn.Cl.Models.Data) : Service Request Type support class for Fixed Telecommunications Network (FTN) data model.
- Ewsd (Ia.Ftn.Cl.Models.Data.Siemens) : Nokia's Siemens EWSD support class of Fixed Telecommunications Network (FTN) data model.
- Subscriber (Ia.Ftn.Cl.Models.Data.Siemens) : EWSD Subscriber support class for Fixed Telecommunications Network (FTN) data model.
- StaffIdentityUser (Ia.Ftn.Cl.Models.Data) : Staff Support Class for Fixed Telecommunications Network (FTN) Ia.Ftn.Cl.Models.Data Model.
- Transaction (Ia.Ftn.Cl.Models.Data) : Transaction support class for Fixed Telecommunications Network (FTN) data model.
- AxeSubscriber (Ia.Ftn.Cl.Models.Ericsson) : AXE Subscriber Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
- Event (Ia.Ftn.Cl.Models) : Event Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
- Asbr (Ia.Ftn.Cl.Models.Huawei) : Huawei's AGCF Users (ASBR) Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
- EmsBoard (Ia.Ftn.Cl.Models.Huawei) : Huawei's EMS Board Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
- EmsDev (Ia.Ftn.Cl.Models.Huawei) : Huawei's EMS Dev Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
- EmsOnt (Ia.Ftn.Cl.Models.Huawei) : Huawei's EMS Ont Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
- EmsOntSipInfo (Ia.Ftn.Cl.Models.Huawei) : Huawei's EMS ONT SIP INFO Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
- EmsPort (Ia.Ftn.Cl.Models.Huawei) : Huawei's EMS Port Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
- EmsVag (Ia.Ftn.Cl.Models.Huawei) : Huawei's EMS VAG Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
- EmsVoipPstnUser (Ia.Ftn.Cl.Models.Huawei) : Huawei's EMS VOIP PSTN User Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
- Mgw (Ia.Ftn.Cl.Models.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.
- Onu (Ia.Ngn.Cl.Model.Huawei) : Huawei's ONU Entity Framework class for Next Generation Network (NGN) entity model.
- Owsbr (Ia.Ftn.Cl.Models.Huawei) : Huawei's Owsbr Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
- Sbr (Ia.Ftn.Cl.Models.Huawei) : Huawei's Sbr Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
- Seruattr (Ia.Ftn.Cl.Models.Huawei) : SERUATTR Signaling Service Processing System (SPS) support class for Huawei's Fixed Telecommunications Network (FTN) entity model.
- Inventory (Ia.Ftn.Cl.Models) : Inventory Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
- LogicalCircuit (Ia.Ngn.Cl.Models) : Logical-Circuit Entity Framework class for Next Generation Network (NGN) entity model.
- Miscellaneous (Ia.Ftn.Cl.Models) : Miscellaneous Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
- NddPon (Ia.Ngn.Cl.Models.NetworkDesignDocument) : Network Design Document support class for Next Generation Network (NGN) entity model.
- AgcfEndpoint (Ia.Ftn.Cl.Models.Nokia) : AGCF Endpoint Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
- AgcfGatewayRecord (Ia.Ftn.Cl.Models.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.Models.Nokia) : Nokia AmsTransaction Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
- SubParty (Ia.Ftn.Cl.Models.Nokia) : SubParty Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
- Subscriber (Ia.Ftn.Cl.Models.Nokia) : Subscriber Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
- Ont (Ia.Ftn.Cl.Models) : ONT Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
- OntOntPots (Ia.Ftn.Cl.Models) : ONT-ONTPOTS Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
- OntServiceHsi (Ia.Ngn.Cl.Models) : ONT-SERVICEHSI Entity Framework class for Next Generation Network (NGN) entity model.
- OntServiceVoip (Ia.Ftn.Cl.Models) : ONT-SERVICEVOIP Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
- Report (Ia.Ftn.Cl.Models) : Report Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
- ReportHistory (Ia.Ftn.Cl.Models) : Report History Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
- Service2 (Ia.Ftn.Cl.Models) : Service Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
- ServiceExemption (Ia.Ftn.Cl.Models) : ServiceExemption Framework class for Fixed Telecommunications Network (FTN) entity model.
- ServiceInitialState (Ia.Ngn.Cl.Models) : Service Initial State Entity Framework class for Next Generation Network (NGN) entity model.
- ServiceRequest (Ia.Ftn.Cl.Models) : Service Request Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
- ServiceRequestAdministrativeIssue (Ia.Ftn.Cl.Models) : Service Request Administrative Issue Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
- ServiceRequestHistory (Ia.Ftn.Cl.Models) : Service Request History Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
- ServiceRequestHsi (Ia.Ngn.Cl.Models) : Service Request Hsi Entity Framework class for Next Generation Network (NGN) entity model.
- ServiceRequestOnt (Ia.Ftn.Cl.Models) : Service Request Ont Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
- ServiceRequestOntDetail (Ia.Ftn.Cl.Models) : Service Request Ont Detail Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
- ServiceRequestService (Ia.Ftn.Cl.Models) : Service Request Service Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
- ServiceRequestType (Ia.Ftn.Cl.Models) : Service Request Type Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
- EwsdSubscriber (Ia.Ftn.Cl.Models.Siemens) : EWSD Subscriber Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
- StaffIdentityUser (Ia.Ftn.Cl.Models) : Staff Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
- Chat (Ia.Ftn.Cl.Models.Telegram) : Telegram Chat/Group/User support class of Fixed Telecommunications Network (FTN) business and data model.
- Transaction (Ia.Ftn.Cl.Models) : Transaction Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
- Access (Ia.Ftn.Cl.Models.Ui) : Access support class for Fixed Telecommunications Network (FTN) ui model.
- Default (Ia.Ftn.Cl.Models.Ui.Administration) : Administration support class for Fixed Telecommunications Network (FTN) ui model.
- Framework (Ia.Ftn.Cl.Models.Ui.Administration) : Network Design Document support class for Fixed Telecommunications Network (FTN) UI model.
- Default (Ia.Ftn.Cl.Models.Ui) : Default support class for Fixed Telecommunications Network (FTN) ui model.
- Subscriber (Ia.Ftn.Cl.Models.Ui.Ericsson) : AXE Subscriber Entity Framework class for Fixed Telecommunications Network (FTN) UI model.
- EmsOnt (Ia.Ftn.Cl.Models.Ui.Huawei) : Huawei's EMS Ont Entity Framework class for Fixed Telecommunications Network (FTN) UI model.
- Sbr (Ia.Ftn.Cl.Models.Ui.Huawei) : Huawei's Sbr Entity Framework class for Fixed Telecommunications Network (FTN) UI model.
- InventoryForDataGridView (Ia.Ftn.Cl.Models.Ui) : Inventory For DataGridView support class for Fixed Telecommunications Network (FTN) ui model.
- Mail (Ia.Ftn.Cl.Models.Ui) : Mail process support class of Fixed Telecommunications Network (FTN) UI model.
- AccessFamilyTypeAreaBlock (Ia.Ftn.Cl.Models.Ui.Maintenance) : Maintenance support class for Fixed Telecommunications Network (FTN) ui model.
- Find (Ia.Ftn.Cl.Models.Ui.Maintenance) : Find subscriber and network information support class for the Fixed Telecommunications Network ui model
- Ams (Ia.Ftn.Cl.Models.Ui.Maintenance.Transaction) : Ams support class for Fixed Telecommunications Network (FTN) ui model.
- Default (Ia.Ftn.Cl.Models.Ui.Maintenance.Report) : Maintenance Report data support class for the Fixed Telecommunications Network ui model
- NetworkDesignDocument (Ia.Ftn.Cl.Models.Ui) : Network Design Document support class for Fixed Telecommunications Network (FTN) UI model.
- AgcfEndpoint (Ia.Ftn.Cl.Models.Ui.Nokia) : AGCF Endpoint Entity Framework class for Fixed Telecommunications Network (FTN) ui model.
- AgcfGatewayRecord (Ia.Ftn.Cl.Models.Ui.Nokia) : AGCF Gateway Record Entity Framework class for Fixed Telecommunications Network (FTN) UI model.
- SubParty (Ia.Ftn.Cl.Models.Ui.Nokia) : SubParty Entity Framework class for Fixed Telecommunications Network (FTN) ui model.
- Subscriber (Ia.Ftn.Cl.Models.Ui.Nokia) : Subscriber Entity Framework class for Fixed Telecommunications Network (FTN) ui model.
- Performance (Ia.Ftn.Cl.Models.Ui) : Performance support class for Fixed Telecommunications Network (FTN) ui model.
- Access (Ia.Ftn.Cl.Models.Ui.Provision) : Access support class for Fixed Telecommunications Network (FTN) ui model.
- Report (Ia.Ftn.Cl.Models.Ui) : Report support class for Fixed Telecommunications Network (FTN) ui model.
- ReportAccessServiceRequest (Ia.Ftn.Cl.Models.Ui) : Report Access Service Request support class for Fixed Telecommunications Network (FTN) ui model.
- Service2 (Ia.Ftn.Cl.Models.Ui) : Service class for Fixed Telecommunications Network (FTN) UI model.
- ServiceAccessFlatTermId (Ia.Ftn.Cl.Models.Ui) : ServiceAccessFlatTermId support class for Fixed Telecommunications Network (FTN) ui model.
- ServiceAreaSymbolServiceRequestTypeIdServiceRequestTypeValue (Ia.Ftn.Cl.Models.Ui) : ServiceRequest ServiceRequestService Access Statistic support class for Fixed Telecommunications Network (FTN) ui model.
- ServiceCustomerAddressAccessStatisticalAccessName (Ia.Ftn.Cl.Models.Ui) : ServiceRequest ServiceRequestService Access Statistic support class for Fixed Telecommunications Network (FTN) ui model.
- ServiceRequestAdministrativeIssue (Ia.Ftn.Cl.Models.Ui) : Service Request Administrative Issue Entity Framework class for Fixed Telecommunications Network (FTN) UI model.
- ServiceRequestService (Ia.Ftn.Cl.Models.Ui) : Service Request Service Entity Framework class for Fixed Telecommunications Network (FTN) UI model.
- Subscriber (Ia.Ftn.Cl.Models.Ui.Siemens) : EWSD Subscriber Entity Framework class for Fixed Telecommunications Network (FTN) UI model.
- Text (Ia.Ftn.Cl.Models.Ui) : Text support class for Fixed Telecommunications Network (FTN) ui model.
- AboutController (Ia.Ftn.Wa.Controllers) :
- AccountController (Ia.Ftn.Wa.Controllers) :
- AdministrationController (Ia.Ftn.Wa.Controllers) :
- AlarmController (Ia.Ftn.Wa.Controllers) :
- ApplicationController (Ia.Ftn.Wa.Controllers) :
- ContactController (Ia.Ftn.Wa.Controllers) :
- HelpController (Ia.Ftn.Wa.Controllers) :
- HomeController (Ia.Ftn.Wa.Controllers) :
- IdentityController (Ia.Ftn.Wa.Controllers) :
- InventoryController (Ia.Ftn.Wa.Controllers) :
- LegalController (Ia.Ftn.Wa.Controllers) :
- MaintenanceController (Ia.Ftn.Wa.Controllers) :
- MaintenanceEventController (Ia.Ftn.Wa.Controllers) :
- MaintenanceReportController (Ia.Ftn.Wa.Controllers) :
- MaintenanceScriptController (Ia.Ftn.Wa.Controllers) :
- ProvisionController (Ia.Ftn.Wa.Controllers) :
- ServiceController (Ia.Ftn.Wa.Controllers) :
- AccessNetwork (Ia.Ftn.Wa.Models.Administration) :
- AccessNetworkViewModel (Ia.Ftn.Wa.Models.Administration) :
- AreaReadiness (Ia.Ftn.Wa.Models.Administration) :
- AreaReadinessViewModel (Ia.Ftn.Wa.Models.Administration) :
- IndexViewModel (Ia.Ftn.Wa.Models.Administration) :
- Kpi (Ia.Ftn.Wa.Models.Administration) :
- KpiViewModel (Ia.Ftn.Wa.Models.Administration) :
- Sdc (Ia.Ftn.Wa.Models.Administration) :
- SdcViewModel (Ia.Ftn.Wa.Models.Administration) :
- ServiceRequestAdministrativeIssue (Ia.Ftn.Wa.Models.Administration) :
- ServiceRequestAdministrativeIssueViewModel (Ia.Ftn.Wa.Models.Administration) :
- ServiceStatus (Ia.Ftn.Wa.Models.Administration) :
- ServiceStatusViewModel (Ia.Ftn.Wa.Models.Administration) :
- StaffViewModel (Ia.Ftn.Wa.Models.Administration) :
- Statistics (Ia.Ftn.Wa.Models.Administration) :
- StatisticsViewModel (Ia.Ftn.Wa.Models.Administration) :
- AlarmViewModel (Ia.Ftn.Wa.Models.Alarm) :
- Index (Ia.Ftn.Wa.Models.Alarm) :
- ApplicationViewModel (Ia.Ftn.Wa.Models.Application) :
- IdentityViewModel (Ia.Ftn.Wa.Models.Application) :
- Index (Ia.Ftn.Wa.Models.Application) :
- Index2 (Ia.Ftn.Wa.Models.Application) :
- Administration (Ia.Ftn.Wa.Models.Business) : Administration support class for Fixed Telecommunications Network (FTN) web application (Intranet) model.
- Contact (Ia.Ftn.Wa.Models.Business) : Contact support class for Fixed Telecommunications Network (FTN) web application (Intranet) model.
- Default (Ia.Ftn.Wa.Models.Business) : Administration support class for Fixed Telecommunications Network (FTN) web application (Intranet) model.
- Script (Ia.Ftn.Wa.Models.Business.Maintenance) : Script support class for Fixed Telecommunications Network (FTN) web application (Intranet) model.
- Index (Ia.Ftn.Wa.Models.Contact) : Contact support class for Fixed Telecommunications Network (FTN) web application (Intranet) model.
- ContactViewModel (Ia.Ftn.Wa.Models.Contact) :
- Administration (Ia.Ftn.Wa.Models.Data) : Administration support class for Fixed Telecommunications Network (FTN) web application (Intranet) model.
- Script (Ia.Ftn.Wa.Models.Data) : Script support class for Fixed Telecommunications Network (FTN) web application (Intranet) model.
- ErrorViewModel (Ia.Ftn.Wa.Models) :
- ChangePasswordViewModel (Ia.Ftn.Wa.Models.IdentityViewModels) :
- LoginViewModel (Ia.Ftn.Wa.Models.Identity) :
- ResetPasswordViewModel (Ia.Ftn.Wa.Models.IdentityViewModels) :
- Access (Ia.Ftn.Wa.Models.Maintenance) :
- AccessViewModel (Ia.Ftn.Wa.Models.Maintenance) :
- Bulk (Ia.Ftn.Wa.Models.Maintenance) :
- BulkViewModel (Ia.Ftn.Wa.Models.Maintenance) :
- FieldTnmdSupplier (Ia.Ftn.Wa.Models.Maintenance) :
- FieldTnmdSupplierViewModel (Ia.Ftn.Wa.Models.Maintenance) :
- Find (Ia.Ftn.Wa.Models.Maintenance) :
- FindViewModel (Ia.Ftn.Wa.Models.Maintenance) :
- Index (Ia.Ftn.Wa.Models.Maintenance) :
- Integrity (Ia.Ftn.Wa.Models.Maintenance) :
- IntegrityViewModel (Ia.Ftn.Wa.Models.Maintenance) :
- List (Ia.Ftn.Wa.Models.Maintenance) :
- ListViewModel (Ia.Ftn.Wa.Models.Maintenance) :
- MaintenanceEventViewModel (Ia.Ftn.Wa.Models.Maintenance) :
- MaintenanceViewModel (Ia.Ftn.Wa.Models.Maintenance) :
- Performance (Ia.Ftn.Wa.Models.Maintenance) :
- PerformanceViewModel (Ia.Ftn.Wa.Models.Maintenance) :
- Report (Ia.Ftn.Wa.Models.Maintenance) :
- ReportViewModel (Ia.Ftn.Wa.Models.Maintenance) :
- Script (Ia.Ftn.Wa.Models.Maintenance) :
- ScriptViewModel (Ia.Ftn.Wa.Models.Maintenance) :
- Sync (Ia.Ftn.Wa.Models.Maintenance) :
- SyncViewModel (Ia.Ftn.Wa.Models.Maintenance) :
- Table (Ia.Ftn.Wa.Models.Maintenance) :
- TableViewModel (Ia.Ftn.Wa.Models.Maintenance) :
- Transaction (Ia.Ftn.Wa.Models.Maintenance) :
- TransactionViewModel (Ia.Ftn.Wa.Models.Maintenance) :
- MenuViewModel (Ia.Ftn.Wa.Models) :
- ParameterViewModel (Ia.Ftn.Wa.Models) :
- Mail (Ia.Ftn.Wa.Models.Provision.Access) :
- MailViewModel (Ia.Ftn.Wa.Models.Provision.Access) :
- Manage (Ia.Ftn.Wa.Models.Provision.Access) :
- ManageViewModel (Ia.Ftn.Wa.Models.Provision.Access) :
- Service (Ia.Ftn.Wa.Models.Provision.Access) :
- ServiceViewModel (Ia.Ftn.Wa.Models.Provision.Access) :
- Lic (Ia.Ftn.Wa.Models.Provision) :
- LicViewModel (Ia.Ftn.Wa.Models.Provision) :
- Manage (Ia.Ftn.Wa.Models.Provision.Migration) :
- ManageViewModel (Ia.Ftn.Wa.Models.Provision.Migration) :
- Service (Ia.Ftn.Wa.Models.Provision) :
- ServiceExemption (Ia.Ftn.Wa.Models.Provision) :
- ServiceExemptionViewModel (Ia.Ftn.Wa.Models.Provision) :
- ServiceRequest (Ia.Ftn.Wa.Models.Provision) :
- ServiceRequestServiceAccess (Ia.Ftn.Wa.Models.Provision) :
- ServiceRequestServiceAccessViewModel (Ia.Ftn.Wa.Models.Provision) :
- ServiceRequestViewModel (Ia.Ftn.Wa.Models.Provision) :
- ServiceViewModel (Ia.Ftn.Wa.Models.Provision) :
- QrCodeViewModel (Ia.Ftn.Wa.Models) :
- Default (Ia.Ftn.Wa.Models.Ui) : Default support class for Fixed Telecommunications Network (FTN) web application (Intranet) model.
- ServiceAndroidApplicationTrekCountry (Ia.Ftn.Wa.Models.Ui) :
- Mouse (Ia.Cl.Model) : Windows mouse movements and properties control support class.
- Winapi (Ia.Cl.Model) : WINAPI click events support class.
- HomeController (Ia.Hsb.DrugOnCall.Wa.Controllers) :
- ErrorViewModel (Ia.Hsb.DrugOnCall.Wa.Models) :
- HomeViewModel (Ia.Hsb.DrugOnCall.Wa.Models) :
- Ui (Ia.Hsb.DrugOnCall.Wa.Models) :
- HomeController (Ia.Hsb.Pregnalact.Wa.Controllers) :
- ErrorViewModel (Ia.Hsb.Pregnalact.Wa.Models) :
- HomeViewModel (Ia.Hsb.Pregnalact.Wa.Models) :
- Ui (Ia.Hsb.Pregnalact.Wa.Models) :
- AgentController (Ia.Api.Wa.Controllers) : Agent API Controller class.
- AuthorizationHeaderHandler () :
- DefaultController (Ia.Api.Wa.Controllers) : Default API Controller class.
- GeoIpController (Ia.Api.Wa.Controllers) : GeoIp API Controller class of Internet Application project model.
- HeartbeatController (Ia.Api.Wa.Controllers) : Heartbeat API Controller class.
- HomeController (Ia.Api.Wa.Controllers) :
- PacketController (Ia.Api.Wa.Controllers) : Packet API Controller class.
- TempController (Ia.Api.Wa.Controllers.Db) : DB Temp API Controller class.
- TraceController (Ia.Api.Wa.Controllers) : Trace API Controller class.
- WeatherController (Ia.Api.Wa.Controllers) : OpenWeatherMap API Controller class.
- WebhookController (Ia.Api.Wa.Controllers) : Webhook API Controller class.
- Ui (Ia.Api.Wa.Models) :
- WeatherForecast (Ia.Api.Wa.Models) :
- Webhook (Ia.Api.Wa.Models) :
- HomeController (Ia.Cdn.Wa.Controllers) :
- ErrorViewModel (Ia.Cdn.Wa.Models) :
- ApplicationDbContext (Ia.Cl) :
- ApplicationUser (Ia.Cl) :
- Db (Ia.Cl) :
- DynamicSiteMapProvider () : Sitemap support class.
- Enumeration () : Enumeration class. Extends enumeration to class like behaviour.
- Extention () : Extention methods for different class objects.
- Agent (Ia.Cl.Models) : Agent model
- ApplicationConfiguration (Ia.Cl.Models) : ApplicationConfiguration 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.Model.Azure) : Azure Cloud related support functions.
- Default (Ia.Cl.Model.Business.Nfc) : Default NFC Near-Field Communication (NFC) Support Business functions
- Inventory (Ia.Cl.Model.Business.Nfc) : Inventory NFC Near-Field Communication (NFC) Support Business functions
- Tag (Ia.Cl.Model.Business.Nfc) : TAG NFC Near-Field Communication (NFC) Support Business functions
- Country (Ia.Cl.Models) : Country geographic coordinates and standard UN naming conventions.
- Germany (Ia.Cl.Models) : German cities and states.
- Kuwait (Ia.Cl.Models) : Kuwait provinces, cities, and areas.
- SaudiArabia (Ia.Cl.Models) : 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.Model.Data.Nfc) : Default NFC Near-Field Communication (NFC) Support Data functions
- Inventory (Ia.Cl.Model.Data.Nfc) : Inventory NFC Near-Field Communication (NFC) Support Data functions
- Project (Ia.Cl.Model.Nfc.Data) : Project Support class for NFC data model
- Tag (Ia.Cl.Model.Data.Nfc) : TAG NFC Near-Field Communication (NFC) Support Data functions
- Msmq (Ia.Cl.Model.Db) : MSMQ Database support class. This handles storing and retrieving MSMQ storage.
- MySql (Ia.Model.Db) : MySQL supporting class.
- Object (Ia.Cl.Model.Db) : Object entity class
- Odbc (Ia.Cl.Model.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.Models) : General use static class of common functions used by most applications.
- Gv (Ia.Cl.Models.Design) : ASP.NET design related support class.
- File (Ia.Cl.Models) : File manipulation related support class.
- Ftp (Ia.Cl.Models) : 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.Models) : GeoIp class of Internet Application project model.
- Gmail (Ia.Cl.Models) : 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.Models) : Heartbeat class.
- Hijri (Ia.Cl.Model) : Hijri date handler class.
- Html (Ia.Cl.Models) : Handle HTML encoding, decoding functions.
- HtmlHelper (Ia.Cl.Models) : HtmlHelper for ASP.Net Core.
- Http (Ia.Cl.Models) : Contains functions that relate to posting and receiving data from remote Internet/Intranet pages
- Identity (Ia.Cl.Models) : ASP.NET Identity support class.
- Image (Ia.Cl.Models) : Image processing support class.
- Imap (Ia.Cl.Models) : IMAP Server Support Class
- Language (Ia.Cl.Models) : Language related support class including langauge list and codes.
- Individual (Ia.Cl.Model.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.Models) : Log file support class.
- Mouse (Ia.Cl.Models) : Windows mouse movements and properties control support class.
- Newspaper (Ia.Cl.Models) : Newspaper and publication display format support class.
- Inventory (Ia.Cl.Model.Nfc) : Inventory NFC Near-Field Communication (NFC) Support Entity functions
- Tag (Ia.Cl.Model.Nfc) : TAG NFC Near-Field Communication (NFC) Support Entity functions
- Ocr (Ia.Cl.Models) : Handles OCR operations.
- Packet (Ia.Cl.Models) : Packet model
- PrayerTime (Ia.Cl.Models) : Prayer times support class.
- Punycode (Ia.Cl.Models) : Punycode support class.
- QrCode (Ia.Cl.Models) : QR Code support class.
- RabbitMq (Ia.Cl.Models) : RabbitMQ Messaging and Streaming Broker Support Class.
- Result (Ia.Cl.Models) : Result support class.
- Seo (Ia.Cl.Models) : Search Engine Optimization (SEO) support class.
- Sms (Ia.Cl.Models) : SMS API service support class.
- Smtp (Ia.Cl.Models) : SMTP Server Support Class
- Socket (Ia.Cl.Models) : Search Engine Optimization (SEO) support class.
- Sound (Ia.Cl.Models) : Sound support class.
- Stopwatch (Ia.Cl.Models) : Stopwatch model
- TagHelper (Ia.Cl.Models) : TagHelper for ASP.Net Core.
- Telnet (Ia.Cl.Models) : Telnet communication support class.
- Trace (Ia.Cl.Models) : 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.Models) : Handle UTF8 issues.
- Weather (Ia.Cl.Models) : Weather class
- Winapi (Ia.Cl.Models) : WINAPI click events support class.
- Word (Ia.Cl.Models) : Word object.
- Twitter (Ia.Cl.Models) : Twitter API support class.
- Xml (Ia.Cl.Models) : XML support class.
- Zip (Ia.Cl.Models) : Zip
- AboutController (Ia.Wa.Controllers) :
- AccountController (Ia.Wa.Controllers) :
- ApplicationController (Ia.Wa.Controllers) :
- ContactController (Ia.Wa.Controllers) :
- HelpController (Ia.Wa.Controllers) :
- HomeController (Ia.Wa.Controllers) :
- IdentityController (Ia.Wa.Controllers) :
- LegalController (Ia.Wa.Controllers) :
- LibraryController (Ia.Wa.Controllers) :
- ManageController (Ia.Wa.Controllers) :
- NetworkController (Ia.Wa.Controllers) :
- NgossController (Ia.Wa.Controllers) :
- PortfolioController (Ia.Wa.Controllers) :
- ServiceController (Ia.Wa.Controllers) :
- ServiceDesignChartController (Ia.Wa.Controllers) :
- ServiceDesignController (Ia.Wa.Controllers) :
- ServiceMAndroidController (Ia.Wa.Controllers) :
- ServiceMController (Ia.Wa.Controllers) :
- ServiceMIosController (Ia.Wa.Controllers) :
- ServiceNfcController (Ia.Wa.Controllers) :
- SmsController (Ia.Wa.Controllers) :
- ExternalLoginConfirmationViewModel (Ia.Wa.Models.AccountViewModels) :
- ForgotPasswordViewModel (Ia.Wa.Models.AccountViewModels) :
- LoginViewModel (Ia.Wa.Models.AccountViewModels) :
- RegisterViewModel (Ia.Wa.Models.AccountViewModels) :
- ResetPasswordViewModel (Ia.Wa.Models.AccountViewModels) :
- SendCodeViewModel (Ia.Wa.Models.AccountViewModels) :
- UseRecoveryCodeViewModel (Ia.Wa.Models.AccountViewModels) :
- VerifyAuthenticatorCodeViewModel (Ia.Wa.Models.AccountViewModels) :
- VerifyCodeViewModel (Ia.Wa.Models.AccountViewModels) :
- Default (Ia.Wa.Models.Business) :
- ContactViewModel (Ia.Wa.Models) :
- Default (Ia.Wa.Models.Data) :
- Portfolio (Ia.Wa.Models.Data) :
- ErrorViewModel (Ia.Wa.Models) :
- AddPhoneNumberViewModel (Ia.Wa.Models.ManageViewModels) :
- ChangePasswordViewModel (Ia.Wa.Models.ManageViewModels) :
- ConfigureTwoFactorViewModel (Ia.Wa.Models.ManageViewModels) :
- DisplayRecoveryCodesViewModel (Ia.Wa.Models.ManageViewModels) :
- FactorViewModel (Ia.Wa.Models.ManageViewModels) :
- IndexViewModel (Ia.Wa.Models.ManageViewModels) :
- ManageLoginsViewModel (Ia.Wa.Models.ManageViewModels) :
- RemoveLoginViewModel (Ia.Wa.Models.ManageViewModels) :
- SetPasswordViewModel (Ia.Wa.Models.ManageViewModels) :
- VerifyPhoneNumberViewModel (Ia.Wa.Models.ManageViewModels) :
- MenuViewModel (Ia.Wa.Models) :
- ParameterViewModel (Ia.Wa.Models) :
- QrCodeViewModel (Ia.Wa.Models) :
- Default (Ia.Wa.Models.Ui) :
- ServiceAndroidApplicationTrekCountry (Ia.Wa.Models.Ui) :
- AuthMessageSender (IdentitySample.Services) :
- 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.
- ApplicationController (Ia.Islamic.Koran.Belief.Wa.Controllers) :
- HomeController (Ia.Islamic.Koran.Belief.Wa.Controllers) :
- ApplicationViewModel (Ia.Islamic.Koran.Belief.Wa.Models) :
- Business (Ia.Islamic.Koran.Belief.Wa.Models) : Koran Reference Network support functions: Business model
- ErrorViewModel (Ia.Islamic.Koran.Belief.Wa.Models) :
- HomeViewModel (Ia.Islamic.Koran.Belief.Wa.Models) :
- VerseCheckboxViewModel (Ia.Islamic.Koran.Belief.Wa.Models) :
- KoranDbContext (Ia.Islamic.Cl) : Koran Reference Network Data Context
- 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
- 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
- Verse (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
- 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
- Verse (Ia.Islamic.Cl.Model) : Verse Koran Reference Network Class Library support functions: Entity model
- VerseTopic (Ia.Islamic.Cl.Model) : VerseTopic Koran Reference Network Class Library support functions: Entity model
- Word (Ia.Islamic.Cl.Model) : Word Koran Reference Network Class Library support functions: Entity model
- WordVerse (Ia.Islamic.Cl.Model) : WordVerse 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
- HomeController (Ia.Islamic.Koran.Wa.Controllers) :
- KoranController (Ia.Islamic.Koran.Wa.Controllers) :
- Default (Ia.Islamic.Koran.Wa.Model.Business) :
- ErrorViewModel (Ia.Islamic.Koran.Wa.Models) :
- KoranViewModel (Ia.Islamic.Koran.Wa.Models) :
- Default (Ia.Islamic.Koran.Wa.Models.Ui) :
- 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.Models.Business) : Kanji business support class
- Kanji (Ia.Learning.Cl.Models.Data) : Kanji support class
- Default (Ia.Learning.Cl.Models) : Default data support functions
- MoeBook (Ia.Learning.Cl.Models) : Ministry of Education Books support class for Learning data model.
- Default (Ia.Learning.Cl.Models.Ui) :
- Business (Ia.Learning.Kafiya.Models) : Default business support class.
- Data (Ia.Learning.Kafiya.Models) : Default data support class.
- HomeController (Ia.Learning.Manhag.Wa.Controllers) :
- ErrorViewModel (Ia.Learning.Manhag.Wa.Models) :
- IndexViewModel (Ia.Learning.Manhag.Wa.Models.Home) :
- DefaultController (Ia.Learning.Kanji.Wa.Controllers) :
- Default (Ia.Learning.Kanji.Models.Business) : Default business support class.
- Index (Ia.Learning.Kanji.Wa.Models.Default) :
- IndexViewModel (Ia.Learning.Kanji.Wa.Models.Default) :
- ErrorViewModel (Ia.Learning.Kanji.Wa.Models) :
- Default (Ia.Simple.Cl.Models.Business.SmartDeals) :
- Category (Ia.Simple.Cl.Models.Data.SmartDeals) :
- Default (Ia.Simple.Cl.Models.Data.SmartDeals) :
- Product (Ia.Simple.Cl.Models.Data.SmartDeals) :
- HomeController (Ia.Statistics.Cdn.Wa.Controllers) :
- Default (Ia.Statistics.Cl.Models.Boutiqaat) : Structure of the boutiqaat.com website.
- Category (Ia.Statistics.Cl.Models) :
- Default (Ia.Statistics.Cl.Models.Dabdoob) : Structure of the dabdoob.com website.
- Default (Ia.Statistics.Cl.Models) :
- Default (Ia.Statistics.Cl.Models.EnglishBookshop) : Structure of the theenglishbookshop.com website.
- Default (Ia.Statistics.Cl.Models.FantasyWorldToys) : Structure of the fantasyworldtoys.com website.
- Default (Ia.Statistics.Cl.Models.HsBookstore) : Structure of the hsbookstore.com website.
- Default (Ia.Statistics.Cl.Models.LuluHypermarket) : Structure of the lulutypermarket.com website.
- Default (Ia.Statistics.Cl.Models.Natureland) : Structure of the natureland.net website.
- Product (Ia.Statistics.Cl.Models) :
- ProductPriceSpot (Ia.Statistics.Cl.Models) :
- ProductPriceStockQuantitySold (Ia.Statistics.Cl.Models) :
- ProductStockSpot (Ia.Statistics.Cl.Models) :
- Site (Ia.Statistics.Cl.Models) : Site support class for Optical Fiber Network (OFN) data model.
- Default (Ia.Statistics.Cl.Models.SultanCenter) : Structure of the sultan-center.com website.
- Default (Ia.Statistics.Cl.Models.Taw9eel) : Structure of the taw9eel.com website.
- WebDriverExtensions () :
- AboutController (Ia.Statistics.Wa.Controllers) :
- ContactController (Ia.Statistics.Wa.Controllers) :
- HelpController (Ia.Statistics.Wa.Controllers) :
- HomeController (Ia.Statistics.Wa.Controllers) :
- IdentityController (Ia.Statistics.Wa.Controllers) :
- LegalController (Ia.Statistics.Wa.Controllers) :
- ListController (Ia.Statistics.Wa.Controllers) :
- SearchController (Ia.Statistics.Wa.Controllers) :
- ServiceController (Ia.Statistics.Wa.Controllers) :
- Default (Ia.Statistics.Wa.Models.Business) :
- ContactViewModel (Ia.Statistics.Wa.Models) :
- Default (Ia.Statistics.Wa.Models.Data) :
- ErrorViewModel (Ia.Statistics.Wa.Models) :
- Index (Ia.Statistics.Wa.Models.Home) :
- IndexViewModel (Ia.Statistics.Wa.Models.Home) :
- ProductViewModel (Ia.Statistics.Wa.Models.List) :
- Default (Ia.Statistics.Wa.Models.Ui) :
- ServiceAndroidApplicationTrekCountry (Ia.Statistics.Wa.Models.Ui) :
- DefaultController (Ia.TentPlay.Api.Wa.Controllers) : Trek API Controller class of Tent Play's model.
- ApplicationDbContext (Ia.TentPlay) :
- Db (Ia.TentPlay) :
- Default (Ia.TentPlay.Cl.Models.Business) : Support class for TentPlay business model
- Default (Ia.TentPlay.Cl.Models.Business.Trek) : Support class for TentPlay Trek business model
- Feature (Ia.TentPlay.Cl.Models.Business.Trek) : Feature class for TentPlay Trek business model
- FeatureClass (Ia.TentPlay.Cl.Models.Business.Trek) : FeatureClass Support class for TentPlay Trek business model
- FeatureClassDistanceToCapital (Ia.TentPlay.Cl.Models.Business.Trek) : FeatureClassDistanceToCapital Support class for TentPlay business model
- FeatureDesignation (Ia.TentPlay.Cl.Models.Business.Trek) : FeatureClass Support class for TentPlay Trek business model
- FeatureName (Ia.TentPlay.Cl.Models.Business.Trek) : Support class for TentPlay Trek business model
- CompanyInformation (Ia.TentPlay.Cl.Models.Data) : CompanyInformation Support class for TentPlay data model
- Default (Ia.TentPlay.Cl.Models.Data) : Support class for TentPlay data model
- ApplicationInformation (Ia.TentPlay.Cl.Models.Data.Trek) : ApplicationInformation Support class for TentPlay Trek data model
- Default (Ia.TentPlay.Cl.Models.Data.Trek) : Default class for TentPlay Trek data model
- Feature (Ia.TentPlay.Cl.Models.Data.Trek) : Feature Support class for TentPlay entity data
- FeatureClass (Ia.TentPlay.Cl.Models.Data.Trek) : FeatureClass Support class for TentPlay Trek business model
- FeatureDesignation (Ia.TentPlay.Cl.Models.Data.Trek) : FeatureDesignation Support class for TentPlay Trek data model
- NgaCountryWaypoint (Ia.TentPlay.Cl.Models.Data.Trek) : NgaCountryWaypoint Support class for TentPlay Waypoint entity data
- Score (Ia.TentPlay.Cl.Models.Memorise) : Score entity functions
- Feature (Ia.TentPlay.Cl.Models.Trek) : Feature Support class for TentPlay entity model
- FeatureDesignation (Ia.TentPlay.Cl.Models.Trek) : FeatureDesignation Support class for TentPlay Trek entity model
- ApplicationInformation (Ia.TentPlay.Cl.Models.Memorise) : ApplicationInformation Support class for TentPlay Memorise model
- Default (Ia.TentPlay.Cl.Models.Memorise) : Default class for TentPlay Memorise data model
- German (Ia.TentPlay.Cl.Models.Memorise) : German class
- Kana (Ia.TentPlay.Cl.Models.Memorise) : Kana class
- Kanji (Ia.TentPlay.Cl.Models.Memorise) : Kanji class
- Math (Ia.TentPlay.Cl.Models.Memorise) : Math Class
- MorseCode (Ia.TentPlay.Cl.Models.Memorise) : Morse code class
- PhoneticAlphabet (Ia.TentPlay.Cl.Models.Memorise) : Phonetic Alphabet
- Russian (Ia.TentPlay.Cl.Models.Memorise) : Russian class
- Test (Ia.TentPlay.Cl.Models.Memorise) : Test Class
- Default (Ia.TentPlay.Cl.Models.Ui.Trek) : Default class for TentPlay Trek UI model
- AboutController (Ia.TentPlay.Wa.Controllers) :
- ContactController (Ia.TentPlay.Wa.Controllers) :
- HelpController (Ia.TentPlay.Wa.Controllers) :
- HomeController (Ia.TentPlay.Wa.Controllers) :
- LegalController (Ia.TentPlay.Wa.Controllers) :
- MemoriseController (Ia.TentPlay.Wa.Controllers) :
- TradeController (Ia.TentPlay.Wa.Controllers) :
- TrekController (Ia.TentPlay.Wa.Controllers) :
- ErrorViewModel (Ia.TentPlay.Wa.Models) :
- TrekViewModel (Ia.TentPlay.Wa.Models) :
- Default (Ia.TentPlay.Wa.Models.Ui) :