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 Huawei's Fixed Telecommunications Network (FTN) business model
1: using System;
2: using System.Collections.Generic;
3: using System.Configuration;
4: using System.Diagnostics;
5: using System.Linq;
6:
7: namespace Ia.Ftn.Cl.Models.Business.Huawei
8: {
9: ////////////////////////////////////////////////////////////////////////////
10:
11: /// <summary publish="true">
12: /// Fixed Telecommunications Network's Operations Support System Management Intranet (FTN OSS) support class for Huawei's Fixed Telecommunications Network (FTN) business model
13: /// </summary>
14: ///
15: /// <value>
16: ///"AppSettings": {
17: /// "ApplicationName": "Ia.Ftn.Nce.Wfa",
18: /// "NceHuaweiServerHost": "*.*.*.*",
19: /// "NceHuaweiServerPort": "*",
20: /// "NceHuaweiServerLoginUser": "LOGIN:::{ctag}::UN=*,PWD=*;",
21: /// "NceHuaweiServerLogoutUser": "LOGOUT:::{ctag}::;"
22: ///}
23: /// </value>
24: ///
25: /// <remarks>
26: /// Copyright © 2014-2025 Jasem Y. Al-Shamlan (info@ia.com.kw), Integrated Applications - Kuwait. All Rights Reserved.
27: ///
28: /// This library is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by
29: /// the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
30: ///
31: /// This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
32: /// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
33: ///
34: /// You should have received a copy of the GNU General Public License along with this library. If not, see http://www.gnu.org/licenses.
35: ///
36: /// Copyright notice: This notice may not be removed or altered from any source distribution.
37: /// </remarks>
38: public class Nce
39: {
40: private static int minute = 0;
41: private static readonly Dictionary<string, int> associateServiceIdAndPortBetweenCreateAndReadDictionary = new Dictionary<string, int>();
42: private static readonly Procedure serviceOntToCreateOrDeleteInEmsOntSipInfoOrVoipPstnUserOfServiceFromThePastHourProcedure = new Ia.Ftn.Cl.Models.Business.Procedure(1, Ia.Ftn.Cl.Models.Business.Provision.ServiceOntToCreateAndToDeleteInEmsOntSipInfoOrVoipPstnUserListFromThePastNHourList);
43: private static readonly Procedure serviceOntToCreateOrDeleteInEmsOntSipInfoOrVoipPstnUserOfServiceFromThePast24HourProcedure = new Ia.Ftn.Cl.Models.Business.Procedure(24, Ia.Ftn.Cl.Models.Business.Provision.ServiceOntToCreateAndToDeleteInEmsOntSipInfoOrVoipPstnUserListFromThePastNHourList);
44: private static readonly Procedure serviceOntToCreateOrDeleteInEmsOntSipInfoOrVoipPstnUserProcedure = new Ia.Ftn.Cl.Models.Business.Procedure(0, Ia.Ftn.Cl.Models.Business.Provision.ServiceOntToCreateAndToDeleteInEmsOntSipInfoOrVoipPstnUserListFromThePastNHourList);
45: private static readonly Procedure updateEmsOntFromH248ToSipProcedure = new Ia.Ftn.Cl.Models.Business.Procedure(Ia.Ftn.Cl.Models.Business.Provision.EmsOntToBeUpdatedFromH248ToSipList);
46: private static readonly Procedure createOntSipInfoOrOntVoipPstnUserForAnOntUpdatedFromH248ToSipProcedure = new Ia.Ftn.Cl.Models.Business.Procedure(Ia.Ftn.Cl.Models.Business.Provision.OntSipInfoOrOntVoipPstnUserToBeCreatedForAnOntUpdatedFromH248ToSipList);
47:
48: private static readonly Procedure msanServiceEmsVoipPstnUserDidFnSnPnDnToDeleteBecauseItHasProvisionedImsServiceOrHasNoEquivalentInServiceListProcedure = new Ia.Ftn.Cl.Models.Business.Procedure(Ia.Ftn.Cl.Models.Business.Provision.MsanServiceEmsVoipPstnUserDidFnSnPnDnToDeleteBecauseItHasProvisionedImsServiceOrHasNoEquivalentInServiceList);
49:
50: private static Ia.Ftn.Cl.Models.Client.Huawei.Ems ems = new Ia.Ftn.Cl.Models.Client.Huawei.Ems();
51:
52: private static List<string> priorityServiceList = new List<string>();
53:
54: /// <summary/>
55: public static string UserName { get { return Ia.Cl.Models.ApplicationConfiguration.GetSetting("AppSettings:NceHuaweiServerUser"); } }
56:
57: /// <summary/>
58: public static string Password { get { return Ia.Cl.Models.ApplicationConfiguration.GetSetting("AppSettings:NceHuaweiServerUserPassword"); } }
59:
60: /// <summary/>
61: public static int SendReadOntSipInfoCommandAgainAfterNSeconds = 30;
62:
63: ////////////////////////////////////////////////////////////////////////////
64:
65: /// <summary>
66: ///
67: /// </summary>
68: public Nce()
69: {
70: }
71:
72: ////////////////////////////////////////////////////////////////////////////
73:
74: /// <summary>
75: ///
76: /// </summary>
77: public static void Connect(out Ia.Cl.Models.Result result)
78: {
79: if (ems != null && !ems.IsConnected)
80: {
81: result = ems.Connect();
82: }
83: else
84: {
85: result = new Ia.Cl.Models.Result();
86:
87: result.AddWarning("Warning: ems is already connected.");
88: }
89: }
90:
91: ////////////////////////////////////////////////////////////////////////////
92:
93: /// <summary>
94: ///
95: /// </summary>
96: public static void Disconnect(out Ia.Cl.Models.Result result)
97: {
98: if (ems != null && ems.IsConnected)
99: {
100: result = ems.Disconnect();
101: }
102: else
103: {
104: result = new Ia.Cl.Models.Result();
105:
106: result.AddWarning("Warning: ems is already disconnected.");
107: }
108: }
109:
110: ////////////////////////////////////////////////////////////////////////////
111:
112: /// <summary>
113: ///
114: /// </summary>
115: public static void Login()
116: {
117: ems.Login();
118: }
119:
120: ////////////////////////////////////////////////////////////////////////////
121:
122: /// <summary>
123: ///
124: /// </summary>
125: public static void Logout()
126: {
127: ems.Logout();
128: }
129:
130: ////////////////////////////////////////////////////////////////////////////
131:
132: /// <summary>
133: ///
134: /// </summary>
135: public static Queue<string> ReceiveQueue
136: {
137: get
138: {
139: return ems.ReceiveQueue;
140: }
141: }
142:
143: ////////////////////////////////////////////////////////////////////////////
144:
145: /// <summary>
146: ///
147: /// </summary>
148: public static Queue<string> SendQueue
149: {
150: get
151: {
152: return ems.SendQueue;
153: }
154: }
155:
156: ////////////////////////////////////////////////////////////////////////////
157:
158: /// <summary>
159: ///
160: /// </summary>
161: public static bool IsConnected
162: {
163: get
164: {
165: return ems != null && ems.IsConnected;
166: }
167: }
168:
169: ////////////////////////////////////////////////////////////////////////////
170:
171: /// <summary>
172: ///
173: /// </summary>
174: public static bool IsLoggedIn
175: {
176: get
177: {
178: return ems.IsLoggedIn;
179: }
180: }
181:
182: ////////////////////////////////////////////////////////////////////////////
183:
184: /// <summary>
185: ///
186: /// </summary>
187: public static void Dispose()
188: {
189: ems.Dispose(true);
190: }
191:
192: ////////////////////////////////////////////////////////////////////////////
193: ////////////////////////////////////////////////////////////////////////////
194:
195: /// <summary>
196: ///
197: /// </summary>
198: public static void ProcessReceiveQueue(out Ia.Cl.Models.Result result)
199: {
200: string rowString, formattedString;
201:
202: result = new Ia.Cl.Models.Result();
203:
204: formattedString = string.Empty;
205:
206: try
207: {
208: Debug.WriteLine("--------------------------------------");
209: Debug.WriteLine("ProcessReceiveQueue(): ReceiveQueue.Count: " + ems.ReceiveQueue.Count);
210:
211: while (ems.ReceiveQueue.Count > 0)
212: {
213: rowString = ems.ReceiveQueue.Dequeue();
214:
215: formattedString = rowString;
216:
217: Debug.WriteLine("ProcessReceiveQueue(): formattedString: " + formattedString);
218:
219: var r = ems.Update(formattedString, ref ems, out string systemIsBusyResponseCommand, out string ontLoadingCommandIsBeingExecutedNowResponseCommand);
220:
221: if (!string.IsNullOrEmpty(systemIsBusyResponseCommand))
222: {
223: ems.SystemIsBusyResendQueue.Enqueue(systemIsBusyResponseCommand);
224: }
225:
226: if (!string.IsNullOrEmpty(ontLoadingCommandIsBeingExecutedNowResponseCommand))
227: {
228: ems.OntLoadingCommandIsBeingExecutedNowResendQueue.Enqueue(ontLoadingCommandIsBeingExecutedNowResponseCommand);
229: }
230:
231: result.AddResult(r);
232: //result.AddWarning("Debugging: Start --------------------------------------");
233: //result.AddWarning(rowString);
234: //result.AddWarning("Debugging: End ----------------------------------------");
235: }
236:
237: Debug.WriteLine("--------------------------------------");
238: }
239: catch (Exception ex)
240: {
241: result.AddError("ProcessReceiveQueue(): Exception: " + ex.ToString() + "================= formattedString: [" + formattedString + "]"); //.Message);
242: }
243: }
244:
245: ////////////////////////////////////////////////////////////////////////////
246:
247: /// <summary>
248: ///
249: /// </summary>
250: public static string ProcessSendQueue(out Ia.Cl.Models.Result result)
251: {
252: string command;
253:
254: var skipSleep = true;
255: result = new Ia.Cl.Models.Result();
256:
257: try
258: {
259: Debug.WriteLine("--------------------------------------");
260:
261: if (ems.SystemIsBusyResendQueue.Count > 0) command = ems.SystemIsBusyResendQueue.Dequeue();
262: else if (ems.OntLoadingCommandIsBeingExecutedNowResendQueue.Count > 0) command = ems.OntLoadingCommandIsBeingExecutedNowResendQueue.Dequeue();
263: else if (ems.OntSipInfoCommandAgainAfterNSecondsResendQueue.Count > 0) command = ems.OntSipInfoCommandAgainAfterNSecondsResendQueue.Dequeue();
264: else if (ems.SendQueue.Count > 0) command = ems.SendQueue.Dequeue();
265: else command = string.Empty;
266:
267: if (!string.IsNullOrEmpty(command))
268: {
269: var r = ems.Send(command, skipSleep);
270:
271: if (r.IsSuccessful) result.AddSuccess(r.Message);
272: else result.AddError(r.Message);
273: }
274:
275: EvaluateSendReadOntSipInfoCommandAgainAfterNSecondsResendQueue();
276:
277: Debug.WriteLine("--------------------------------------");
278: }
279: catch (Exception ex)
280: {
281: command = string.Empty;
282:
283: result.AddError("ProcessSendQueue(): Exception: " + ex.Message);
284: }
285:
286: return result.IsSuccessful ? command : string.Empty;
287: }
288:
289: ////////////////////////////////////////////////////////////////////////////
290:
291: /// <summary>
292: ///
293: /// </summary>
294: private static bool Minute()
295: {
296: bool b;
297:
298: var now = DateTime.UtcNow.AddHours(3);
299:
300: if (minute != now.Minute)
301: {
302: minute = now.Minute;
303:
304: b = true;
305: }
306: else b = false;
307:
308: return b;
309: }
310:
311: ////////////////////////////////////////////////////////////////////////////
312: ////////////////////////////////////////////////////////////////////////////
313:
314: /// <summary>
315: ///
316: /// </summary>
317: public static void CreateOntSipInfoOrVoipPstnUserAndOrVoipPstnAccount(string service, string accessName, int port, out Ia.Cl.Models.Result result)
318: {
319: int serviceType;
320: string serviceId;
321: Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Ont nddOnt;
322:
323: result = new Ia.Cl.Models.Result();
324:
325: serviceType = Ia.Ftn.Cl.Models.Business.Service.ServiceType.ImsService;
326:
327: try
328: {
329: if (!string.IsNullOrEmpty(service))
330: {
331: if (Ia.Ftn.Cl.Models.Business.Service.ServiceHasEightDigitsAndIsWithinAllowedDomainList(service))
332: {
333: serviceId = Ia.Ftn.Cl.Models.Business.Service.ServiceToServiceId(service, serviceType);
334:
335: if (!string.IsNullOrEmpty(accessName))
336: {
337: nddOnt = Ia.Ftn.Cl.Models.Data.NetworkDesignDocument.OntByAccessName(accessName);
338:
339: if (nddOnt != null)
340: {
341: Ia.Ftn.Cl.Models.Business.Huawei.Nce.CreateOntSipInfoOrVoipPstnUserAndOrVoipPstnAccount(service, nddOnt, port, ref result);
342: }
343: else result.AddError("NDD ONT is null for access name: " + accessName + ".");
344: }
345: else result.AddError("AccessName null or empty.");
346: }
347: else result.AddError("Service number " + service + " does not belong to allowed domain lists.");
348: }
349: else result.AddError("Service null or empty.");
350: }
351: catch (Exception ex)
352: {
353: result.AddError("Exception: " + ex.ToString() + ".");
354: }
355: }
356:
357: ////////////////////////////////////////////////////////////////////////////
358:
359: /// <summary>
360: ///
361: /// </summary>
362: public static void CreateOntSipInfoOrVoipPstnUserAndOrVoipPstnAccount(string service, Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Ont nddOnt, int port, ref Ia.Cl.Models.Result result)
363: {
364: Ia.Ftn.Cl.Models.Business.Huawei.Default.FnSnPnPort fnSnPnPort;
365: Ia.Ftn.Cl.Models.Business.Huawei.Dev.MduDev mduDev;
366: Ia.Ftn.Cl.Models.Huawei.EmsOnt emsOnt;
367:
368: if (Ia.Ftn.Cl.Models.Business.Service.ServiceHasEightDigitsAndIsWithinAllowedDomainList(service))
369: {
370: if (nddOnt != null)
371: {
372: if (Ia.Ftn.Cl.Models.Business.Service.OltIsWithinAllowedToBeProvisionedOrMigratedOltList(nddOnt.Pon.PonGroup.Olt))
373: {
374: emsOnt = Ia.Ftn.Cl.Models.Data.Huawei.Ont.ReadIncludeAccess(nddOnt.Id);
375:
376: if (emsOnt != null)
377: {
378: if (nddOnt.Pon.PonGroup.Olt.IsSip == true)
379: {
380: if (emsOnt.FamilyType == Ia.Ftn.Cl.Models.Business.Huawei.Ont.FamilyType.Mdu)
381: {
382: var accessNameToMduDevDictionary = Ia.Ftn.Cl.Models.Data.Huawei.Default.AccessNameToMduDevDictionary;
383:
384: if (accessNameToMduDevDictionary.ContainsKey(nddOnt.Access.Name))
385: {
386: mduDev = accessNameToMduDevDictionary[nddOnt.Access.Name];
387:
388: var vacantFnSnPnList = Ia.Ftn.Cl.Models.Data.Huawei.Ems.VacantMduFnSnPnForOntList(mduDev, emsOnt);
389:
390: if (vacantFnSnPnList.Count > 0)
391: {
392: if (port != Ia.Ftn.Cl.Models.Business.Default.PortUndefinedOrInvalidOrUnknown)
393: {
394: fnSnPnPort = vacantFnSnPnList.Where(f => f.Port == port).SingleOrDefault();
395: }
396: else fnSnPnPort = Ia.Ftn.Cl.Models.Data.Huawei.Ems.NextVacantMduFnSnPnForOnt(mduDev, emsOnt);
397:
398: if (fnSnPnPort != null)
399: {
400: var emsVoipPstnUserList = Ia.Ftn.Cl.Models.Data.Huawei.VoipPstnUser.ReadByService(service);
401:
402: if (emsVoipPstnUserList.Count == 0)
403: {
404: Ia.Ftn.Cl.Models.Data.Huawei.Ems.SendCreateVoipPstnUser(ems, mduDev, nddOnt, service, fnSnPnPort.Sn, fnSnPnPort.Pn);
405:
406: if (nddOnt.Pon.PonGroup.Olt.Odf.Router.Vendor == Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Vendor.Nokia)
407: {
408: Ia.Ftn.Cl.Models.Data.Huawei.Ems.SendCreateVoipPstnAccount(ems, mduDev, nddOnt, service, fnSnPnPort.Sn, fnSnPnPort.Pn);
409: }
410:
411: Ia.Ftn.Cl.Models.Data.Huawei.Ems.SendSaveDev(ems, mduDev);
412:
413: associateServiceIdAndPortBetweenCreateAndReadDictionary[service] = fnSnPnPort.Port;
414:
415: result.AddSuccess("command(s) sent...");
416: }
417: else result.AddError("emsVoipPstnUserList count != 0. Value must be zero before the operation is executed for service: " + service + ", and access: " + nddOnt.Access.Name + ".");
418: }
419: else result.AddError("MDU sn and/or tel is invalid or does not exist.");
420: }
421: else result.AddError("vacantFnSnPnList.Count is 0. There are no vacant ports in MDU.");
422: }
423: else result.AddError("emsOnt.FamilyType is MDU but AccessNameToMduDevDictionary does not contain key: " + nddOnt.Access.Name + " for service: " + service + ", and access: " + nddOnt.Access.Name + ".");
424: }
425: else // SFU
426: {
427: var vacantList = Ia.Ftn.Cl.Models.Data.Huawei.Ems.VacantTelForOntList(emsOnt);
428:
429: if (port != Ia.Ftn.Cl.Models.Business.Default.PortUndefinedOrInvalidOrUnknown)
430: {
431: port = vacantList.Contains(port) ? port : Ia.Ftn.Cl.Models.Business.Default.PortUndefinedOrInvalidOrUnknown;
432: }
433: else port = Ia.Ftn.Cl.Models.Data.Huawei.Ems.NextVacantTelForOnt(emsOnt);
434:
435: if (port != Ia.Ftn.Cl.Models.Business.Default.PortUndefinedOrInvalidOrUnknown)
436: {
437: Ia.Ftn.Cl.Models.Data.Huawei.Ems.SendCreateOntSipInfo(ems, nddOnt, service, port);
438:
439: // Don't use SAVE-DEV here
440: //Ia.Ftn.Cl.Model.Data.Huawei.Ems.SendSaveDev(ems, emsOnt.EmsPort.EmsBoard.EmsDev);
441:
442: associateServiceIdAndPortBetweenCreateAndReadDictionary[service] = port;
443:
444: result.AddSuccess("command(s) sent...");
445: }
446: else result.AddError("port is invalid or does not exist.");
447: }
448: }
449: else result.AddError("OLT is not SIP, its H.248.");
450: }
451: else result.AddError("emsOnt is null, does not exist for access: " + nddOnt.Access.Name + ".");
452: }
453: else result.AddError("access is not in an allowed to be provisioned OLT: " + nddOnt.Access.Name + ".");
454: }
455: else result.AddError("nddOnt is null, does not exist for service: " + service + ".");
456: }
457: else result.AddError("Service number " + service + " does not belong to allowed domain lists.");
458: }
459:
460: ////////////////////////////////////////////////////////////////////////////
461:
462: /// <summary>
463: ///
464: /// </summary>
465: public static void ReadOntSipInfoOrVoipPstnUserAndOrVoipPstnAccount(string service, out Ia.Cl.Models.Result result)
466: {
467: ReadOntSipInfoOrVoipPstnUserAndOrVoipPstnAccount(service, string.Empty, Ia.Ftn.Cl.Models.Business.Default.PortUndefinedOrInvalidOrUnknown, out result);
468: }
469:
470: ////////////////////////////////////////////////////////////////////////////
471:
472: /// <summary>
473: ///
474: /// </summary>
475: public static void ReadOntSipInfoOrVoipPstnUserAndOrVoipPstnAccount(string service, string accessName, int port, out Ia.Cl.Models.Result result)
476: {
477: // see Ia.Ftn.Cl.Model.Business.Huawei.Nce.SendCommandAgainAfterNSeconds;
478:
479: ReadOntSipInfoOrVoipPstnUserAndOrVoipPstnAccount(service, accessName, port, false, out result);
480: }
481:
482: ////////////////////////////////////////////////////////////////////////////
483:
484: /// <summary>
485: ///
486: /// </summary>
487: public static void ReadOntSipInfoOrVoipPstnUserAndOrVoipPstnAccount(string service, string accessName, int port, bool sendReadOntSipInfoCommandAgainAfterNSeconds, out Ia.Cl.Models.Result result)
488: {
489: int serviceType;
490: string serviceId;
491:
492: result = new Ia.Cl.Models.Result();
493:
494: serviceType = Ia.Ftn.Cl.Models.Business.Service.ServiceType.ImsService;
495:
496: try
497: {
498: if (!string.IsNullOrEmpty(service))
499: {
500: if (Ia.Ftn.Cl.Models.Business.Service.ServiceHasEightDigitsAndIsWithinAllowedDomainList(service))
501: {
502: serviceId = Ia.Ftn.Cl.Models.Business.Service.ServiceToServiceId(service, serviceType);
503:
504: if (!string.IsNullOrEmpty(accessName))
505: {
506: var nddOnt = Ia.Ftn.Cl.Models.Data.NetworkDesignDocument.OntByAccessName(accessName);
507:
508: if (nddOnt != null)
509: {
510: Ia.Ftn.Cl.Models.Business.Huawei.Nce.ReadOntSipInfoOrVoipPstnUser(service, nddOnt, port, sendReadOntSipInfoCommandAgainAfterNSeconds, ref result);
511: }
512: else result.AddError("NDD ONT is null for access name: " + accessName + ".");
513: }
514: else
515: {
516: Ia.Ftn.Cl.Models.Business.Huawei.Nce.ReadOntSipInfoOrVoipPstnUser(service, null, port, sendReadOntSipInfoCommandAgainAfterNSeconds, ref result);
517: }
518: }
519: else result.AddError("Service number " + service + " does not belong to allowed domain lists.");
520: }
521: else result.AddError("Service null or empty.");
522: }
523: catch (Exception ex)
524: {
525: result.AddError("Exception: " + ex.ToString() + ".");
526: }
527: }
528:
529: ////////////////////////////////////////////////////////////////////////////
530:
531: /// <summary>
532: ///
533: /// </summary>
534: public static void ReadOntSipInfoOrVoipPstnUser(string service, Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Ont nddOnt, int port, ref Ia.Cl.Models.Result result)
535: {
536: // see Ia.Ftn.Cl.Model.Business.Huawei.Nce.SendCommandAgainAfterNSeconds;
537:
538: ReadOntSipInfoOrVoipPstnUser(service, nddOnt, port, false, ref result);
539: }
540:
541: ////////////////////////////////////////////////////////////////////////////
542:
543: /// <summary>
544: ///
545: /// </summary>
546: public static void ReadOntSipInfoOrVoipPstnUser(string service, Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Ont nddOnt, int port, bool sendReadOntSipInfoCommandAgainAfterNSeconds, ref Ia.Cl.Models.Result result)
547: {
548: Ia.Ftn.Cl.Models.Business.Huawei.Dev.MduDev mduDev;
549: Ia.Ftn.Cl.Models.Huawei.EmsOnt emsOnt;
550:
551: if (Ia.Ftn.Cl.Models.Business.Service.ServiceHasEightDigitsAndIsWithinAllowedDomainList(service))
552: {
553: if (nddOnt != null)
554: {
555: emsOnt = Ia.Ftn.Cl.Models.Data.Huawei.Ont.Read(nddOnt.Id);
556:
557: if (emsOnt != null)
558: {
559: if (emsOnt.FamilyType == Ia.Ftn.Cl.Models.Business.Huawei.Ont.FamilyType.Mdu)
560: {
561: var accessNameToMduDevDictionary = Ia.Ftn.Cl.Models.Data.Huawei.Default.AccessNameToMduDevDictionary;
562:
563: if (accessNameToMduDevDictionary.ContainsKey(nddOnt.Access.Name))
564: {
565: mduDev = accessNameToMduDevDictionary[nddOnt.Access.Name];
566:
567: if (port != Ia.Ftn.Cl.Models.Business.Default.PortUndefinedOrInvalidOrUnknown)
568: {
569: var fnSnPnPort = mduDev.PossibleFnSnPnPortList.Where(f => f.Port == port).SingleOrDefault();
570:
571: Ia.Ftn.Cl.Models.Data.Huawei.Ems.SendReadVoipPstnUser(ems, mduDev.Dev, fnSnPnPort.Sn, fnSnPnPort.Pn);
572: }
573: else if (associateServiceIdAndPortBetweenCreateAndReadDictionary.ContainsKey(service))
574: {
575: port = associateServiceIdAndPortBetweenCreateAndReadDictionary[service];
576:
577: var fnSnPnPort = mduDev.PossibleFnSnPnPortList.Where(f => f.Port == port).SingleOrDefault();
578:
579: Ia.Ftn.Cl.Models.Data.Huawei.Ems.SendReadVoipPstnUser(ems, mduDev.Dev, fnSnPnPort.Sn, fnSnPnPort.Pn);
580: }
581: else
582: {
583: foreach (var fnSnPnPort in mduDev.PossibleFnSnPnPortList)
584: {
585: Ia.Ftn.Cl.Models.Data.Huawei.Ems.SendReadVoipPstnUser(ems, mduDev.Dev, fnSnPnPort.Sn, fnSnPnPort.Pn);
586: }
587: }
588:
589: result.AddSuccess("command(s) sent...");
590: }
591: else result.AddError("emsOnt.FamilyType is MDU but AccessNameToMduDevDictionary does not contain key: " + nddOnt.Access.Name + " for service: " + service + ", and access: " + nddOnt.Access.Name + ".");
592: }
593: else // SFU
594: {
595: Ia.Ftn.Cl.Models.Data.Huawei.Ems.SendReadOntSipInfo(ems, nddOnt, sendReadOntSipInfoCommandAgainAfterNSeconds);
596:
597: result.AddSuccess("command(s) sent...");
598: }
599: }
600: else result.AddError("emsOnt is null, does not exist for access: " + nddOnt.Access.Name + ".");
601: }
602: else
603: {
604: var emsOntSipInfoList = Ia.Ftn.Cl.Models.Data.Huawei.OntSipInfo.ReadByServiceIncludeEmsOntAndAccess(service);
605:
606: if (emsOntSipInfoList.Count > 0)
607: {
608: // SFU
609:
610: foreach (var emsOntSipInfo in emsOntSipInfoList)
611: {
612: emsOnt = emsOntSipInfo.EmsOnt;
613:
614: if (emsOnt.Access != null)
615: {
616: nddOnt = Ia.Ftn.Cl.Models.Data.NetworkDesignDocument.OntByOntAccessId(emsOnt.Access.Id);
617:
618: if (nddOnt != null)
619: {
620: if (Ia.Ftn.Cl.Models.Business.Service.OltIsWithinAllowedToBeProvisionedOrMigratedOltList(nddOnt.Pon.PonGroup.Olt))
621: {
622: if (nddOnt.Pon.PonGroup.Olt.IsSip == true)
623: {
624: Ia.Ftn.Cl.Models.Data.Huawei.Ems.SendReadOntSipInfo(ems, nddOnt, sendReadOntSipInfoCommandAgainAfterNSeconds);
625:
626: result.AddSuccess("command(s) sent...");
627: }
628: else result.AddError("OLT is not SIP, its H.248.");
629: }
630: else result.AddError("nddOnt.Access.Name " + nddOnt.Access.Name + " is not in an allowed to be provisioned OLT.");
631: }
632: else result.AddError("nddOnt is null, does not exist for service " + service + ".");
633: }
634: else result.AddError("emsOnt.Access is null for service " + service + ".");
635: }
636: }
637:
638:
639: var emsVoipPstnUserList = Ia.Ftn.Cl.Models.Data.Huawei.VoipPstnUser.ReadByService(service);
640:
641: if (emsVoipPstnUserList.Count > 0)
642: {
643: // MDU
644:
645: foreach (var emsVoipPstnUser in emsVoipPstnUserList)
646: {
647: emsOnt = emsVoipPstnUser.EmsOnt;
648:
649: if (emsOnt.Access != null)
650: {
651: nddOnt = Ia.Ftn.Cl.Models.Data.NetworkDesignDocument.OntByOntAccessId(emsOnt.Access.Id);
652:
653: if (nddOnt != null)
654: {
655: if (Ia.Ftn.Cl.Models.Business.Service.OltIsWithinAllowedToBeProvisionedOrMigratedOltList(nddOnt.Pon.PonGroup.Olt))
656: {
657: if (nddOnt.Pon.PonGroup.Olt.IsSip == true)
658: {
659: if (emsOnt.FamilyType == Ia.Ftn.Cl.Models.Business.Huawei.Ont.FamilyType.Mdu)
660: {
661: var accessNameToMduDevDictionary = Ia.Ftn.Cl.Models.Data.Huawei.Default.AccessNameToMduDevDictionary;
662:
663: if (accessNameToMduDevDictionary.ContainsKey(nddOnt.Access.Name))
664: {
665: mduDev = accessNameToMduDevDictionary[nddOnt.Access.Name];
666:
667: foreach (var fnSnPnPort in mduDev.PossibleFnSnPnPortList)
668: {
669: Ia.Ftn.Cl.Models.Data.Huawei.Ems.SendReadVoipPstnUser(ems, mduDev.Dev, fnSnPnPort.Sn, fnSnPnPort.Pn);
670:
671: result.AddSuccess("command(s) sent...");
672: }
673: }
674: else result.AddError("emsOnt.FamilyType is MDU but AccessNameToMduDevDictionary does not contain key: " + nddOnt.Access.Name + " for service: " + service + ", and access: " + nddOnt.Access.Name + ".");
675: }
676: else result.AddError("ONT family type is not MDU.");
677: }
678: else result.AddError("OLT is not SIP, its H.248.");
679: }
680: else result.AddError("nddOnt.Access.Name " + nddOnt.Access.Name + " is not in an allowed to be provisioned OLT.");
681: }
682: else result.AddError("nddOnt is null, does not exist for service " + service + ".");
683: }
684: else result.AddError("emsOnt.Access is null for service " + service + ".");
685: }
686:
687:
688: var msanEmsVoipPstnUserList = Ia.Ftn.Cl.Models.Data.Huawei.VoipPstnUser.ReadByMsanService(service);
689:
690: if (msanEmsVoipPstnUserList.Count > 0)
691: {
692: // MSAN
693:
694: foreach (var emsVoipPstnUser in msanEmsVoipPstnUserList)
695: {
696: ReadVoipPstnUser(emsVoipPstnUser.DID, emsVoipPstnUser.FN, emsVoipPstnUser.SN, emsVoipPstnUser.PN);
697: }
698:
699: result.AddSuccess("command(s) sent...");
700: }
701: }
702: }
703: }
704: else result.AddError("Service number " + service + " does not belong to allowed domain lists.");
705: }
706:
707: ////////////////////////////////////////////////////////////////////////////
708:
709: /// <summary>
710: ///
711: /// </summary>
712: public static string DeleteOntSipInfoOrVoipPstnUserAndOrVoipPstnAccount(string service, string accessName, int port, out Ia.Cl.Models.Result result)
713: {
714: int serviceType;
715: string serviceId, vacatedAccessName;
716: Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Ont vacatedNddOnt;
717:
718: result = new Ia.Cl.Models.Result();
719:
720: serviceType = Ia.Ftn.Cl.Models.Business.Service.ServiceType.ImsService;
721:
722: vacatedAccessName = string.Empty;
723:
724: try
725: {
726: if (!string.IsNullOrEmpty(service))
727: {
728: if (Ia.Ftn.Cl.Models.Business.Service.ServiceHasEightDigitsAndIsWithinAllowedDomainList(service))
729: {
730: serviceId = Ia.Ftn.Cl.Models.Business.Service.ServiceToServiceId(service, serviceType);
731:
732: if (!string.IsNullOrEmpty(accessName))
733: {
734: var nddOnt = Ia.Ftn.Cl.Models.Data.NetworkDesignDocument.OntByAccessName(accessName);
735:
736: if (nddOnt != null)
737: {
738: vacatedNddOnt = Ia.Ftn.Cl.Models.Business.Huawei.Nce.VacateOntSipInfoOrDeleteVoipPstnUserAndOrVacateVoipPstnAccount(service, nddOnt, port, ref result);
739:
740: vacatedAccessName = (vacatedNddOnt != null) ? vacatedNddOnt.Access.Name : string.Empty;
741: }
742: else result.AddError("NDD ONT is null for access name: " + accessName + ".");
743: }
744: else if (port == Ia.Ftn.Cl.Models.Business.Default.PortUndefinedOrInvalidOrUnknown)
745: {
746: vacatedNddOnt = Ia.Ftn.Cl.Models.Business.Huawei.Nce.VacateOntSipInfoOrDeleteVoipPstnUserAndOrVacateVoipPstnAccount(service, null, port, ref result);
747:
748: vacatedAccessName = (vacatedNddOnt != null) ? vacatedNddOnt.Access.Name : string.Empty;
749: }
750: else result.AddError("accessName is empty or null and port is not PortUndefinedOrInvalidOrUnknown. NCE does not know how to handle vacation where nddOnt is null and port is defined.");
751: }
752: else result.AddError("Service number " + service + " does not belong to allowed domain lists.");
753: }
754: else result.AddError("Service null or empty.");
755: }
756: catch (Exception ex)
757: {
758: result.AddError("Exception: " + ex.ToString() + ".");
759: }
760:
761: return vacatedAccessName;
762: }
763:
764: ////////////////////////////////////////////////////////////////////////////
765:
766: /// <summary>
767: ///
768: /// </summary>
769: public static Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Ont VacateOntSipInfoOrDeleteVoipPstnUserAndOrVacateVoipPstnAccount(string service, Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Ont nddOnt, int port, ref Ia.Cl.Models.Result result)
770: {
771: Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Ont vacatedNddOnt;
772: Ia.Ftn.Cl.Models.Business.Huawei.Dev.MduDev mduDev;
773: Ia.Ftn.Cl.Models.Huawei.EmsOnt emsOnt;
774:
775: vacatedNddOnt = nddOnt;
776:
777: if (Ia.Ftn.Cl.Models.Business.Service.ServiceHasEightDigitsAndIsWithinAllowedDomainList(service))
778: {
779: if (nddOnt != null)
780: {
781: if (Ia.Ftn.Cl.Models.Business.Service.OltIsWithinAllowedToBeProvisionedOrMigratedOltList(nddOnt.Pon.PonGroup.Olt))
782: {
783: if (nddOnt.Pon.PonGroup.Olt.IsSip == true)
784: {
785: emsOnt = Ia.Ftn.Cl.Models.Data.Huawei.Ont.ReadIncludeAccess(nddOnt.Id);
786:
787: if (emsOnt.FamilyType == Ia.Ftn.Cl.Models.Business.Huawei.Ont.FamilyType.Mdu)
788: {
789: var accessNameToMduDevDictionary = Ia.Ftn.Cl.Models.Data.Huawei.Default.AccessNameToMduDevDictionary;
790:
791: if (accessNameToMduDevDictionary.ContainsKey(nddOnt.Access.Name))
792: {
793: mduDev = accessNameToMduDevDictionary[nddOnt.Access.Name];
794:
795: if (port == Ia.Ftn.Cl.Models.Business.Default.PortUndefinedOrInvalidOrUnknown)
796: {
797: var emsVoipPstnUserList = Ia.Ftn.Cl.Models.Data.Huawei.VoipPstnUser.ReadByService(service);
798:
799: foreach (var emsVoipPstnUser in emsVoipPstnUserList)
800: {
801: if (nddOnt.Pon.PonGroup.Olt.Odf.Router.Vendor == Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Vendor.Nokia)
802: {
803: Ia.Ftn.Cl.Models.Data.Huawei.Ems.SendVacateVoipPstnAccount(ems, mduDev, nddOnt, service, emsVoipPstnUser.SN, emsVoipPstnUser.PN);
804: }
805:
806: Ia.Ftn.Cl.Models.Data.Huawei.Ems.SendDeleteVoipPstnUser(ems, mduDev, nddOnt, service, emsVoipPstnUser.SN, emsVoipPstnUser.PN);
807:
808: result.AddSuccess("command(s) sent...");
809: }
810: }
811: else
812: {
813: var fnSnPnPort = mduDev.PossibleFnSnPnPortList.Where(f => f.Port == port).SingleOrDefault();
814:
815: if (nddOnt.Pon.PonGroup.Olt.Odf.Router.Vendor == Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Vendor.Nokia)
816: {
817: Ia.Ftn.Cl.Models.Data.Huawei.Ems.SendVacateVoipPstnAccount(ems, mduDev, nddOnt, service, mduDev.FirstFnSnPnPort.Sn, fnSnPnPort.Pn);
818: }
819:
820: Ia.Ftn.Cl.Models.Data.Huawei.Ems.SendDeleteVoipPstnUser(ems, mduDev, nddOnt, service, mduDev.FirstFnSnPnPort.Sn, fnSnPnPort.Pn);
821:
822: result.AddSuccess("command(s) sent...");
823: }
824:
825: Ia.Ftn.Cl.Models.Data.Huawei.Ems.SendSaveDev(ems, mduDev);
826: }
827: else result.AddError("emsOnt.FamilyType is MDU but AccessNameToMduDevDictionary does not contain key: " + nddOnt.Access.Name + " for service " + service + " and access " + nddOnt.Access.Name + ".");
828: }
829: else // SFU
830: {
831: if (port == Ia.Ftn.Cl.Models.Business.Default.PortUndefinedOrInvalidOrUnknown)
832: {
833: var emsOntSipInfoList = Ia.Ftn.Cl.Models.Data.Huawei.OntSipInfo.ReadByService(service);
834:
835: foreach (var emsOntSipInfo in emsOntSipInfoList)
836: {
837: Ia.Ftn.Cl.Models.Data.Huawei.Ems.SendVacateOntSipInfo(ems, nddOnt, service, emsOntSipInfo.TEL);
838: }
839:
840: result.AddSuccess("command(s) sent...");
841: }
842: else
843: {
844: Ia.Ftn.Cl.Models.Data.Huawei.Ems.SendVacateOntSipInfo(ems, nddOnt, service, port);
845:
846: result.AddSuccess("command(s) sent...");
847: }
848: }
849: }
850: else result.AddError("OLT is not SIP, its H.248.");
851: }
852: else result.AddError("nddOnt.Access.Name " + nddOnt.Access.Name + " is not in an allowed to be provisioned OLT.");
853: }
854: else
855: {
856: var emsOntSipInfoList = Ia.Ftn.Cl.Models.Data.Huawei.OntSipInfo.ReadByServiceIncludeEmsOntAndAccess(service);
857:
858: if (emsOntSipInfoList.Count > 0)
859: {
860: // SFU
861:
862: foreach (var emsOntSipInfo in emsOntSipInfoList)
863: {
864: emsOnt = emsOntSipInfo.EmsOnt;
865:
866: if (emsOnt.Access != null)
867: {
868: nddOnt = Ia.Ftn.Cl.Models.Data.NetworkDesignDocument.OntByOntAccessId(emsOnt.Access.Id);
869:
870: if (nddOnt != null)
871: {
872: if (Ia.Ftn.Cl.Models.Business.Service.OltIsWithinAllowedToBeProvisionedOrMigratedOltList(nddOnt.Pon.PonGroup.Olt))
873: {
874: if (nddOnt.Pon.PonGroup.Olt.IsSip == true)
875: {
876: Ia.Ftn.Cl.Models.Data.Huawei.Ems.SendVacateOntSipInfo(ems, nddOnt, service, emsOntSipInfo.TEL);
877:
878: result.AddSuccess("command(s) sent...");
879: }
880: else result.AddError("OLT is not SIP, its H.248.");
881: }
882: else result.AddError("nddOnt.Access.Name " + nddOnt.Access.Name + " is not in an allowed to be provisioned OLT.");
883: }
884: else result.AddError("nddOnt is null, does not exist for service " + service + ".");
885:
886: vacatedNddOnt = nddOnt;
887: }
888: else result.AddError("emsOnt.Access is null for service " + service + ".");
889: }
890: }
891:
892:
893: var emsVoipPstnUserList = Ia.Ftn.Cl.Models.Data.Huawei.VoipPstnUser.ReadByService(service);
894:
895: if (emsVoipPstnUserList.Count > 0)
896: {
897: // MDU
898:
899: foreach (var emsVoipPstnUser in emsVoipPstnUserList)
900: {
901: emsOnt = emsVoipPstnUser.EmsOnt;
902:
903: if (emsOnt.Access != null)
904: {
905: nddOnt = Ia.Ftn.Cl.Models.Data.NetworkDesignDocument.OntByOntAccessId(emsOnt.Access.Id);
906:
907: if (nddOnt != null)
908: {
909: if (Ia.Ftn.Cl.Models.Business.Service.OltIsWithinAllowedToBeProvisionedOrMigratedOltList(nddOnt.Pon.PonGroup.Olt))
910: {
911: if (nddOnt.Pon.PonGroup.Olt.IsSip == true)
912: {
913: if (emsOnt.FamilyType == Ia.Ftn.Cl.Models.Business.Huawei.Ont.FamilyType.Mdu)
914: {
915: var accessNameToMduDevDictionary = Ia.Ftn.Cl.Models.Data.Huawei.Default.AccessNameToMduDevDictionary;
916:
917: if (accessNameToMduDevDictionary.ContainsKey(nddOnt.Access.Name))
918: {
919: mduDev = accessNameToMduDevDictionary[nddOnt.Access.Name];
920:
921: if (nddOnt.Pon.PonGroup.Olt.Odf.Router.Vendor == Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Vendor.Nokia)
922: {
923: Ia.Ftn.Cl.Models.Data.Huawei.Ems.SendVacateVoipPstnAccount(ems, mduDev, nddOnt, service, emsVoipPstnUser.SN, emsVoipPstnUser.PN);
924: }
925:
926: Ia.Ftn.Cl.Models.Data.Huawei.Ems.SendDeleteVoipPstnUser(ems, mduDev, nddOnt, service, emsVoipPstnUser.SN, emsVoipPstnUser.PN);
927:
928: Ia.Ftn.Cl.Models.Data.Huawei.Ems.SendSaveDev(ems, mduDev);
929:
930: result.AddSuccess("command(s) sent...");
931: }
932: else result.AddError("emsOnt.FamilyType is MDU but AccessNameToMduDevDictionary does not contain key: " + nddOnt.Access.Name + " for service: " + service + ", and access: " + nddOnt.Access.Name + ".");
933: }
934: else result.AddError("ONT family type is not MDU.");
935: }
936: else result.AddError("OLT is not SIP, its H.248.");
937: }
938: else result.AddError("nddOnt.Access.Name " + nddOnt.Access.Name + " is not in an allowed to be provisioned OLT.");
939: }
940: else result.AddError("nddOnt is null, does not exist for service " + service + ".");
941:
942: vacatedNddOnt = nddOnt;
943: }
944: else result.AddError("emsOnt.Access is null for service " + service + ".");
945: }
946: }
947: else
948: {
949: var msanEmsVoipPstnUserList = Ia.Ftn.Cl.Models.Data.Huawei.VoipPstnUser.ReadByMsanService(service);
950:
951: if (msanEmsVoipPstnUserList.Count > 0)
952: {
953: // MSAN
954:
955: foreach (var emsVoipPstnUser in msanEmsVoipPstnUserList)
956: {
957: DeleteVoipPstnUserAndOrVacateVoipPstnAccount(emsVoipPstnUser.DID, emsVoipPstnUser.FN, emsVoipPstnUser.SN, emsVoipPstnUser.PN);
958: }
959:
960: result.AddSuccess("command(s) sent...");
961: }
962: else result.AddWarning("Could not find service " + service + ".");
963: }
964: }
965: }
966: else result.AddError("Service number " + service + " does not belong to allowed domain lists.");
967:
968: return vacatedNddOnt;
969: }
970:
971: ////////////////////////////////////////////////////////////////////////////
972:
973: /// <summary>
974: ///
975: /// </summary>
976: public static List<Ia.Ftn.Cl.Models.Business.Huawei.Dev.MsanDev.Lic> DeleteMsanVoipPstnUser2(string service, out Ia.Cl.Models.Result result)
977: {
978: Ia.Ftn.Cl.Models.Business.Huawei.Dev.MsanDev.Lic lic;
979:
980: result = new Ia.Cl.Models.Result();
981:
982: var licList = new List<Ia.Ftn.Cl.Models.Business.Huawei.Dev.MsanDev.Lic>();
983:
984: if (Ia.Ftn.Cl.Models.Business.Service.ServiceHasEightDigitsAndIsWithinAllowedDomainList(service))
985: {
986: var msanEmsVoipPstnUserList = Ia.Ftn.Cl.Models.Data.Huawei.VoipPstnUser.ReadByMsanService(service);
987:
988: if (msanEmsVoipPstnUserList.Count > 0)
989: {
990: // MSAN
991:
992: foreach (var emsVoipPstnUser in msanEmsVoipPstnUserList)
993: {
994: DeleteVoipPstnUserAndOrVacateVoipPstnAccount(emsVoipPstnUser.DID, emsVoipPstnUser.FN, emsVoipPstnUser.SN, emsVoipPstnUser.PN);
995:
996: lic = Ia.Ftn.Cl.Models.Data.Huawei.Default.MsanDevLicByEmsVoipPstnUserId(emsVoipPstnUser.Id);
997:
998: licList.Add(lic);
999: }
1000:
1001: result.AddSuccess("command(s) sent...");
1002: }
1003: else result.AddWarning("Could not find service " + service + ".");
1004: }
1005: else result.AddError("Service number " + service + " does not belong to allowed domain lists.");
1006:
1007: return licList;
1008: }
1009:
1010: ////////////////////////////////////////////////////////////////////////////
1011:
1012: /// <summary>
1013: ///
1014: /// </summary>
1015: public static void DeleteVoipPstnUserAndOrVacateVoipPstnAccount(string dev, int fn, int sn, int pn)
1016: {
1017: Ia.Ftn.Cl.Models.Data.Huawei.Ems.SendVacateVoipPstnAccount(ems, dev, fn, sn, pn);
1018:
1019: Ia.Ftn.Cl.Models.Data.Huawei.Ems.SendDeleteVoipPstnUser(ems, dev, fn, sn, pn);
1020:
1021: Ia.Ftn.Cl.Models.Data.Huawei.Ems.SendSaveDev(ems, dev);
1022: }
1023:
1024: ////////////////////////////////////////////////////////////////////////////
1025:
1026: /// <summary>
1027: ///
1028: /// </summary>
1029: private static void DeleteVoipPstnUserAndOrVacateVoipPstnAccount(int did, int fn, int sn, int pn)
1030: {
1031: var dev = Ia.Ftn.Cl.Models.Data.Huawei.Dev.DidToDevDictionary[did];
1032:
1033: Ia.Ftn.Cl.Models.Data.Huawei.Ems.SendVacateVoipPstnAccount(ems, dev, fn, sn, pn);
1034:
1035: Ia.Ftn.Cl.Models.Data.Huawei.Ems.SendDeleteVoipPstnUser(ems, dev, fn, sn, pn);
1036:
1037: Ia.Ftn.Cl.Models.Data.Huawei.Ems.SendSaveDev(ems, dev);
1038: }
1039:
1040: ////////////////////////////////////////////////////////////////////////////
1041: ////////////////////////////////////////////////////////////////////////////
1042:
1043: /// <summary>
1044: ///
1045: /// </summary>
1046: public static Ia.Cl.Models.Result CreateMsanVoipPstnUser(string msanDevId, int fn, int sn, int pn, string service)
1047: {
1048: Ia.Ftn.Cl.Models.Business.Huawei.Default.FnSnPnPort fnSnPn;
1049:
1050: var result = new Ia.Cl.Models.Result();
1051:
1052: if (Ia.Ftn.Cl.Models.Business.Service.ServiceHasEightDigitsAndIsWithinAllowedDomainList(service))
1053: {
1054: var msanDev = (from m in Ia.Ftn.Cl.Models.Data.Huawei.Default.MsanDevList where m.Id == msanDevId select m).Single();
1055:
1056: var vacantFnSnPnList = Ia.Ftn.Cl.Models.Data.Huawei.Ems.VacantMsanFnSnPnListForMsanDev(msanDev);
1057:
1058: if (vacantFnSnPnList.Count > 0)
1059: {
1060: fnSnPn = vacantFnSnPnList.Where(f => f.Fn == fn && f.Sn == sn && f.Pn == pn).SingleOrDefault();
1061:
1062: if (fnSnPn == null) fnSnPn = Ia.Ftn.Cl.Models.Data.Huawei.Ems.NextVacantMsanFnSnPnForMsanDev(msanDev);
1063:
1064: if (fnSnPn != null)
1065: {
1066: var emsVoipPstnUserList = Ia.Ftn.Cl.Models.Data.Huawei.VoipPstnUser.ReadByService(service);
1067:
1068: if (emsVoipPstnUserList.Count == 0)
1069: {
1070: Ia.Ftn.Cl.Models.Data.Huawei.Ems.SendCreateMsanVoipPstnUser(ems, msanDev, fnSnPn.Fn, fnSnPn.Sn, fnSnPn.Pn, service);
1071:
1072: Ia.Ftn.Cl.Models.Data.Huawei.Ems.SendSaveDev(ems, msanDev);
1073:
1074: result.AddSuccess("command(s) sent...");
1075: }
1076: else result.AddError("emsVoipPstnUserList count != 0. Value must be zero before the operation is executed for service: " + service + ".");
1077: }
1078: else result.AddError("MDU sn and/or tel is invalid or does not exist.");
1079: }
1080: else result.AddError("vacantFnSnPnList.Count is 0. There are no vacant ports in MSAN.");
1081: }
1082: else result.AddError("Service number " + service + " does not belong to allowed domain lists.");
1083:
1084: return result;
1085: }
1086:
1087: ////////////////////////////////////////////////////////////////////////////
1088:
1089: /// <summary>
1090: ///
1091: /// </summary>
1092: public static void ReadVoipPstnUser(string dev, int fn, int sn, int pn)
1093: {
1094: Ia.Ftn.Cl.Models.Data.Huawei.Ems.SendReadVoipPstnUser(ems, dev, sn, pn);
1095: }
1096:
1097: ////////////////////////////////////////////////////////////////////////////
1098:
1099: /// <summary>
1100: ///
1101: /// </summary>
1102: public static void ReadMsanVoipPstnUser(Ia.Ftn.Cl.Models.Business.Huawei.Dev.MsanDev.Lic lic)
1103: {
1104: Ia.Ftn.Cl.Models.Data.Huawei.Ems.SendReadVoipPstnUser(ems, lic.MsanDevDev, lic.Sn, lic.Pn);
1105: }
1106:
1107: ////////////////////////////////////////////////////////////////////////////
1108:
1109: /// <summary>
1110: ///
1111: /// </summary>
1112: public static void ReadVoipPstnUser(string service)
1113: {
1114: Ia.Ftn.Cl.Models.Data.Huawei.Ems.SendReadVoipPstnUser(ems, service);
1115: }
1116:
1117: ////////////////////////////////////////////////////////////////////////////
1118:
1119: /// <summary>
1120: ///
1121: /// </summary>
1122: private static void ReadVoipPstnUser(int did, int fn, int sn, int pn)
1123: {
1124: var dev = Ia.Ftn.Cl.Models.Data.Huawei.Dev.DidToDevDictionary[did];
1125:
1126: Ia.Ftn.Cl.Models.Data.Huawei.Ems.SendReadVoipPstnUser(ems, dev, sn, pn);
1127: }
1128:
1129: ////////////////////////////////////////////////////////////////////////////
1130:
1131: /// <summary>
1132: ///
1133: /// </summary>
1134: public static void DeleteVoipPstnUser(string dev, int fn, int sn, int pn)
1135: {
1136: Ia.Ftn.Cl.Models.Data.Huawei.Ems.SendDeleteVoipPstnUser(ems, dev, fn, sn, pn);
1137:
1138: Ia.Ftn.Cl.Models.Data.Huawei.Ems.SendSaveDev(ems, dev);
1139: }
1140:
1141: ////////////////////////////////////////////////////////////////////////////
1142:
1143: /// <summary>
1144: ///
1145: /// </summary>
1146: public static List<Ia.Ftn.Cl.Models.Business.Huawei.Dev.MsanDev.Lic> DeleteMsanVoipPstnUser(string service, out Ia.Cl.Models.Result result)
1147: {
1148: var licList = new List<Ia.Ftn.Cl.Models.Business.Huawei.Dev.MsanDev.Lic>();
1149:
1150: result = new Ia.Cl.Models.Result();
1151:
1152: try
1153: {
1154: if (!string.IsNullOrEmpty(service))
1155: {
1156: if (Ia.Ftn.Cl.Models.Business.Service.ServiceHasEightDigitsAndIsWithinAllowedDomainList(service))
1157: {
1158: licList = Ia.Ftn.Cl.Models.Business.Huawei.Nce.DeleteMsanVoipPstnUser2(service, out result);
1159: }
1160: else result.AddError("Service number " + service + " does not belong to allowed domain lists.");
1161: }
1162: else result.AddError("Service null or empty.");
1163: }
1164: catch (Exception ex)
1165: {
1166: result.AddError("Exception: " + ex.ToString() + ".");
1167: }
1168:
1169: return licList;
1170: }
1171:
1172: ////////////////////////////////////////////////////////////////////////////
1173: ////////////////////////////////////////////////////////////////////////////
1174:
1175: /// <summary>
1176: ///
1177: /// </summary>
1178: public static Ia.Cl.Models.Result ResetOnt(string accessName)
1179: {
1180: var result = new Ia.Cl.Models.Result();
1181:
1182: try
1183: {
1184: if (!string.IsNullOrEmpty(accessName))
1185: {
1186: var nddOnt = Ia.Ftn.Cl.Models.Data.NetworkDesignDocument.OntByAccessName(accessName);
1187:
1188: if (nddOnt != null)
1189: {
1190: Ia.Ftn.Cl.Models.Data.Huawei.Ems.SendResetOnt(ems, nddOnt);
1191: }
1192: else result.AddError("NDD ONT is null for access name: " + accessName);
1193: }
1194: else
1195: {
1196: result.AddError("AccessName null or empty");
1197: }
1198: }
1199: catch (Exception ex)
1200: {
1201: result.AddError("Exception: " + ex.ToString());
1202: }
1203:
1204: return result;
1205: }
1206:
1207: ////////////////////////////////////////////////////////////////////////////
1208: ////////////////////////////////////////////////////////////////////////////
1209:
1210: /// <summary>
1211: ///
1212: /// </summary>
1213: public static Ia.Cl.Models.Result ManageSynchronizationBetweenAccessAndSwitchPastHour()
1214: {
1215: // See: ManageSynchronizationBetweenAccessAndSwitchPastHour(), ManageSynchronizationBetweenAccessAndSwitchPast24Hours(), ManageSynchronizationBetweenAccessAndSwitch()
1216:
1217: Ia.Ftn.Cl.Models.Business.Procedure.Process process;
1218:
1219: var sendReadOntSipInfoCommandAgainAfterNSeconds = true; // later remove latestProcess from inside function and make this true
1220: var result = new Ia.Cl.Models.Result();
1221:
1222: // problem: I have put empty new List<string>() here because there is an exception: System.Exception: Undefined function
1223: process = serviceOntToCreateOrDeleteInEmsOntSipInfoOrVoipPstnUserOfServiceFromThePastHourProcedure.NextProcess(new List<string>());
1224:
1225: if (process.Type != Ia.Ftn.Cl.Models.Business.Procedure.ProcessType.None)
1226: {
1227: if (process.Type == Ia.Ftn.Cl.Models.Business.Procedure.ProcessType.Create)
1228: {
1229: result.AddSuccess("create: " + process.ServiceId + " " + serviceOntToCreateOrDeleteInEmsOntSipInfoOrVoipPstnUserOfServiceFromThePast24HourProcedure.ProgressCounterString);
1230:
1231: CreateOntSipInfoOrVoipPstnUserAndOrVoipPstnAccount(process.Service, process.Ont, Ia.Ftn.Cl.Models.Business.Default.PortUndefinedOrInvalidOrUnknown, ref result);
1232: }
1233: else if (process.Type == Ia.Ftn.Cl.Models.Business.Procedure.ProcessType.Read)
1234: {
1235: result.AddSuccess("read: " + process.ServiceId + " " + serviceOntToCreateOrDeleteInEmsOntSipInfoOrVoipPstnUserOfServiceFromThePast24HourProcedure.ProgressCounterString);
1236:
1237: ReadOntSipInfoOrVoipPstnUser(process.Service, process.Ont, Ia.Ftn.Cl.Models.Business.Default.PortUndefinedOrInvalidOrUnknown, sendReadOntSipInfoCommandAgainAfterNSeconds, ref result);
1238: }
1239: else if (process.Type == Ia.Ftn.Cl.Models.Business.Procedure.ProcessType.Delete)
1240: {
1241: result.AddSuccess("delete: " + process.ServiceId + " " + serviceOntToCreateOrDeleteInEmsOntSipInfoOrVoipPstnUserOfServiceFromThePast24HourProcedure.ProgressCounterString);
1242:
1243: _ = VacateOntSipInfoOrDeleteVoipPstnUserAndOrVacateVoipPstnAccount(process.Service, process.Ont, Ia.Ftn.Cl.Models.Business.Default.PortUndefinedOrInvalidOrUnknown, ref result);
1244: }
1245: else result.AddError("sync: undefined procedure.");
1246:
1247: // Ia.Ftn.Cl.Model.Data.MessageQueue.SecretaryApplication.Updated() is in Ia.Ftn.Cl.Model.Business.Huawei.Ems.UpdateDatabaseWithEmsCommandOutput();
1248: }
1249: else result.AddWarning("sync: nothing to create or delete");
1250:
1251: return result;
1252: }
1253:
1254: ////////////////////////////////////////////////////////////////////////////
1255:
1256: /// <summary>
1257: ///
1258: /// </summary>
1259: public static Ia.Cl.Models.Result ManageSynchronizationBetweenAccessAndSwitchPast24Hours()
1260: {
1261: // See: ManageSynchronizationBetweenAccessAndSwitchPastHour(), ManageSynchronizationBetweenAccessAndSwitchPast24Hours(), ManageSynchronizationBetweenAccessAndSwitch()
1262:
1263: Ia.Ftn.Cl.Models.Business.Procedure.Process process;
1264:
1265: var sendReadOntSipInfoCommandAgainAfterNSeconds = true; // later remove latestProcess from inside function and make this true
1266: var result = new Ia.Cl.Models.Result();
1267:
1268: process = serviceOntToCreateOrDeleteInEmsOntSipInfoOrVoipPstnUserOfServiceFromThePast24HourProcedure.NextProcess(priorityServiceList);
1269:
1270: if (priorityServiceList.Count > 50) priorityServiceList.Clear();
1271:
1272: if (process.Type != Ia.Ftn.Cl.Models.Business.Procedure.ProcessType.None)
1273: {
1274: if (process.Type == Ia.Ftn.Cl.Models.Business.Procedure.ProcessType.Create)
1275: {
1276: result.AddSuccess("create: " + process.ServiceId + " " + serviceOntToCreateOrDeleteInEmsOntSipInfoOrVoipPstnUserOfServiceFromThePast24HourProcedure.ProgressCounterString);
1277:
1278: CreateOntSipInfoOrVoipPstnUserAndOrVoipPstnAccount(process.Service, process.Ont, Ia.Ftn.Cl.Models.Business.Default.PortUndefinedOrInvalidOrUnknown, ref result);
1279: }
1280: else if (process.Type == Ia.Ftn.Cl.Models.Business.Procedure.ProcessType.Read)
1281: {
1282: result.AddSuccess("read: " + process.ServiceId + " " + serviceOntToCreateOrDeleteInEmsOntSipInfoOrVoipPstnUserOfServiceFromThePast24HourProcedure.ProgressCounterString);
1283:
1284: ReadOntSipInfoOrVoipPstnUser(process.Service, process.Ont, Ia.Ftn.Cl.Models.Business.Default.PortUndefinedOrInvalidOrUnknown, sendReadOntSipInfoCommandAgainAfterNSeconds, ref result);
1285: }
1286: else if (process.Type == Ia.Ftn.Cl.Models.Business.Procedure.ProcessType.Delete)
1287: {
1288: result.AddSuccess("delete: " + process.ServiceId + " " + serviceOntToCreateOrDeleteInEmsOntSipInfoOrVoipPstnUserOfServiceFromThePast24HourProcedure.ProgressCounterString);
1289:
1290: _ = VacateOntSipInfoOrDeleteVoipPstnUserAndOrVacateVoipPstnAccount(process.Service, process.Ont, Ia.Ftn.Cl.Models.Business.Default.PortUndefinedOrInvalidOrUnknown, ref result);
1291: }
1292: else result.AddError("sync: undefined procedure.");
1293:
1294: // Ia.Ftn.Cl.Model.Data.MessageQueue.SecretaryApplication.Updated() is in Ia.Ftn.Cl.Model.Business.Huawei.Ems.UpdateDatabaseWithEmsCommandOutput();
1295: }
1296: else result.AddWarning("sync: nothing to create or delete");
1297:
1298: return result;
1299: }
1300:
1301: ////////////////////////////////////////////////////////////////////////////
1302:
1303: /// <summary>
1304: ///
1305: /// </summary>
1306: public static Ia.Cl.Models.Result ManageSynchronizationBetweenAccessAndSwitch()
1307: {
1308: // See: ManageSynchronizationBetweenAccessAndSwitchPastHour(), ManageSynchronizationBetweenAccessAndSwitchPast24Hours(), ManageSynchronizationBetweenAccessAndSwitch()
1309:
1310: Ia.Ftn.Cl.Models.Business.Procedure.Process process;
1311:
1312: var sendReadOntSipInfoCommandAgainAfterNSeconds = true; // later remove latestProcess from inside function and make this true
1313: var result = new Ia.Cl.Models.Result();
1314:
1315: // problem: I have put empty new List<string>() here because there is an exception: System.Exception: Undefined function
1316: process = serviceOntToCreateOrDeleteInEmsOntSipInfoOrVoipPstnUserProcedure.NextProcess(new List<string>());
1317:
1318: if (process.Type != Ia.Ftn.Cl.Models.Business.Procedure.ProcessType.None)
1319: {
1320: if (process.Type == Ia.Ftn.Cl.Models.Business.Procedure.ProcessType.Create)
1321: {
1322: result.AddSuccess("create: " + process.ServiceId + " " + serviceOntToCreateOrDeleteInEmsOntSipInfoOrVoipPstnUserProcedure.ProgressCounterString);
1323:
1324: CreateOntSipInfoOrVoipPstnUserAndOrVoipPstnAccount(process.Service, process.Ont, Ia.Ftn.Cl.Models.Business.Default.PortUndefinedOrInvalidOrUnknown, ref result);
1325: }
1326: else if (process.Type == Ia.Ftn.Cl.Models.Business.Procedure.ProcessType.Read)
1327: {
1328: result.AddSuccess("read: " + process.ServiceId + " " + serviceOntToCreateOrDeleteInEmsOntSipInfoOrVoipPstnUserProcedure.ProgressCounterString);
1329:
1330: ReadOntSipInfoOrVoipPstnUser(process.Service, process.Ont, Ia.Ftn.Cl.Models.Business.Default.PortUndefinedOrInvalidOrUnknown, sendReadOntSipInfoCommandAgainAfterNSeconds, ref result);
1331: }
1332: else if (process.Type == Ia.Ftn.Cl.Models.Business.Procedure.ProcessType.Delete)
1333: {
1334: result.AddSuccess("delete: " + process.ServiceId + " " + serviceOntToCreateOrDeleteInEmsOntSipInfoOrVoipPstnUserProcedure.ProgressCounterString);
1335:
1336: _ = VacateOntSipInfoOrDeleteVoipPstnUserAndOrVacateVoipPstnAccount(process.Service, process.Ont, Ia.Ftn.Cl.Models.Business.Default.PortUndefinedOrInvalidOrUnknown, ref result);
1337: }
1338: else result.AddError("sync: undefined procedure.");
1339:
1340: // Ia.Ftn.Cl.Model.Data.MessageQueue.SecretaryApplication.Updated() is in Ia.Ftn.Cl.Model.Business.Huawei.Ems.UpdateDatabaseWithEmsCommandOutput();
1341: }
1342: else result.AddWarning("sync: nothing to create or delete");
1343:
1344: return result;
1345: }
1346:
1347: ////////////////////////////////////////////////////////////////////////////
1348: ////////////////////////////////////////////////////////////////////////////
1349:
1350: /// <summary>
1351: ///
1352: /// </summary>
1353: public static Ia.Cl.Models.Result ManageDeleteMsanOfProvisionedImsServiceOrWithNoEquivalentInService()
1354: {
1355: Ia.Ftn.Cl.Models.Business.Procedure.Process process;
1356:
1357: var result = new Ia.Cl.Models.Result();
1358:
1359: process = msanServiceEmsVoipPstnUserDidFnSnPnDnToDeleteBecauseItHasProvisionedImsServiceOrHasNoEquivalentInServiceListProcedure.NextProcess();
1360:
1361: if (process.Type != Ia.Ftn.Cl.Models.Business.Procedure.ProcessType.None)
1362: {
1363: if (process.Type == Ia.Ftn.Cl.Models.Business.Procedure.ProcessType.Delete)
1364: {
1365: result.AddSuccess("delete: " + process.Service + " " + process.EmsVoipPstnUserDidFnSnPnDn.ToSimpleDidFnSnPnDnTextString() + " " + msanServiceEmsVoipPstnUserDidFnSnPnDnToDeleteBecauseItHasProvisionedImsServiceOrHasNoEquivalentInServiceListProcedure.ProgressCounterString);
1366:
1367: DeleteVoipPstnUserAndOrVacateVoipPstnAccount(process.EmsVoipPstnUserDidFnSnPnDn.Did, process.EmsVoipPstnUserDidFnSnPnDn.Fn, process.EmsVoipPstnUserDidFnSnPnDn.Sn, process.EmsVoipPstnUserDidFnSnPnDn.Pn);
1368: }
1369: else if (process.Type == Ia.Ftn.Cl.Models.Business.Procedure.ProcessType.Read)
1370: {
1371: result.AddSuccess("read: " + process.Service + " " + process.EmsVoipPstnUserDidFnSnPnDn.ToSimpleDidFnSnPnDnTextString() + " " + msanServiceEmsVoipPstnUserDidFnSnPnDnToDeleteBecauseItHasProvisionedImsServiceOrHasNoEquivalentInServiceListProcedure.ProgressCounterString);
1372:
1373: ReadVoipPstnUser(process.EmsVoipPstnUserDidFnSnPnDn.Did, process.EmsVoipPstnUserDidFnSnPnDn.Fn, process.EmsVoipPstnUserDidFnSnPnDn.Sn, process.EmsVoipPstnUserDidFnSnPnDn.Pn);
1374: }
1375: else result.AddError("sync: undefined procedure.");
1376:
1377: // Ia.Ftn.Cl.Model.Data.MessageQueue.SecretaryApplication.Updated() is in Ia.Ftn.Cl.Model.Business.Huawei.Ems.UpdateDatabaseWithEmsCommandOutput();
1378: }
1379: else result.AddWarning("sync: nothing to delete");
1380:
1381: return result;
1382: }
1383:
1384: ////////////////////////////////////////////////////////////////////////////
1385: ////////////////////////////////////////////////////////////////////////////
1386:
1387: /// <summary>
1388: ///
1389: /// </summary>
1390: public static void ManageUpdateOfOntFromH248ToSip(out Ia.Cl.Models.Result result)
1391: {
1392: Ia.Ftn.Cl.Models.Business.Procedure.Process process;
1393:
1394: result = new Ia.Cl.Models.Result();
1395:
1396: process = updateEmsOntFromH248ToSipProcedure.NextProcess();
1397:
1398: if (process.Type != Ia.Ftn.Cl.Models.Business.Procedure.ProcessType.None)
1399: {
1400: if (process.Type == Ia.Ftn.Cl.Models.Business.Procedure.ProcessType.Update)
1401: {
1402: result.AddSuccess("update: " + process.Ont.Access.Name + " " + updateEmsOntFromH248ToSipProcedure.ProgressCounterString);
1403:
1404: Ia.Ftn.Cl.Models.Data.Huawei.Ems.SendUpdateOntFromH248ToSip(ems, process.Ont);
1405: }
1406: else if (process.Type == Ia.Ftn.Cl.Models.Business.Procedure.ProcessType.Read)
1407: {
1408: result.AddSuccess("read: " + process.Ont.Access.Name + " " + updateEmsOntFromH248ToSipProcedure.ProgressCounterString);
1409:
1410: Ia.Ftn.Cl.Models.Data.Huawei.Ems.SendReadOnt(ems, process.Ont);
1411: }
1412: else result.AddSuccess("update: undefined procedure.");
1413: }
1414: else result.AddSuccess("update: nothing to update");
1415: }
1416:
1417: ////////////////////////////////////////////////////////////////////////////
1418:
1419: /// <summary>
1420: ///
1421: /// </summary>
1422: public static void ManageCreateOntSipInfoOrOntVoipPstnUserForOntUpdatedFromH248ToSip(out Ia.Cl.Models.Result result)
1423: {
1424: Ia.Ftn.Cl.Models.Business.Procedure.Process process;
1425:
1426: result = new Ia.Cl.Models.Result();
1427:
1428: process = createOntSipInfoOrOntVoipPstnUserForAnOntUpdatedFromH248ToSipProcedure.NextProcess();
1429:
1430: if (process.Type != Ia.Ftn.Cl.Models.Business.Procedure.ProcessType.None)
1431: {
1432: if (process.Type == Ia.Ftn.Cl.Models.Business.Procedure.ProcessType.Update)
1433: {
1434: result.AddSuccess("create: " + process.Ont.Access.Name + " " + process.Service + " " + createOntSipInfoOrOntVoipPstnUserForAnOntUpdatedFromH248ToSipProcedure.ProgressCounterString);
1435:
1436: CreateOntSipInfoOrVoipPstnUserAndOrVoipPstnAccount(process.Service, process.Ont, process.Port, ref result);
1437: }
1438: else if (process.Type == Ia.Ftn.Cl.Models.Business.Procedure.ProcessType.Read)
1439: {
1440: result.AddSuccess("read: " + process.Ont.Access.Name + " " + process.Service + "Ia.Ftn.Cl.Model.Data.MessageQueue." + createOntSipInfoOrOntVoipPstnUserForAnOntUpdatedFromH248ToSipProcedure.ProgressCounterString);
1441:
1442: ReadOntSipInfoOrVoipPstnUser(process.Service, process.Ont, process.Port, ref result);
1443: }
1444: else result.AddSuccess("create: undefined procedure.");
1445: }
1446: else result.AddSuccess("create: nothing to create");
1447: }
1448:
1449: ////////////////////////////////////////////////////////////////////////////
1450:
1451: /// <summary>
1452: ///
1453: /// </summary>
1454: public static Ia.Cl.Models.Result ManageMessageQueue()
1455: {
1456: List<string> list;
1457:
1458: var result = new Ia.Cl.Models.Result();
1459:
1460: var queueCount = Ia.Ftn.Cl.Models.Data.MessageQueue.NceApplication.Count;
1461:
1462: if (queueCount > 0)
1463: {
1464: var message = Ia.Ftn.Cl.Models.Data.MessageQueue.NceApplication.Dequeue;
1465:
1466: if (message != null)
1467: {
1468: if (message.Process == Ia.Ftn.Cl.Models.Business.MessageQueue.Process.ReadService)
1469: {
1470: var service = message.Service;
1471:
1472: list = Ia.Ftn.Cl.Models.Business.Huawei.Ems.EmsCommandsToRetriveOntNetworkElementDataByService(service);
1473:
1474: foreach (string s in list) ems.SendQueue.Enqueue(s);
1475:
1476: if (!priorityServiceList.Contains(service)) priorityServiceList.Add(service);
1477: }
1478: else if (message.Process == Ia.Ftn.Cl.Models.Business.MessageQueue.Process.ReadAccess)
1479: {
1480: list = Ia.Ftn.Cl.Models.Business.Huawei.Ems.EmsCommandsToRetriveOntNetworkElementDataByAccessName(message.AccessName);
1481:
1482: foreach (string s in list) ems.SendQueue.Enqueue(s);
1483: }
1484: else if (message.Process == Ia.Ftn.Cl.Models.Business.MessageQueue.Process.ResetAccess)
1485: {
1486: var nddOnt = Ia.Ftn.Cl.Models.Data.NetworkDesignDocument.OntByAccessName(message.AccessName);
1487:
1488: if (nddOnt != null)
1489: {
1490: Ia.Ftn.Cl.Models.Data.Huawei.Ems.SendResetOnt(ems, nddOnt);
1491: }
1492: else result.AddError("NDD ONT is null for access name: " + message.AccessName);
1493: }
1494: else if (message.Process == Ia.Ftn.Cl.Models.Business.MessageQueue.Process.CreateReadServiceAccessPort || message.Process == Ia.Ftn.Cl.Models.Business.MessageQueue.Process.CreateReadNceOrAmsServiceAccessPort)
1495: {
1496: var service = message.Service;
1497: var accessName = message.AccessName;
1498: var port = (message.Port > 0) ? message.Port : Ia.Ftn.Cl.Models.Business.Default.PortUndefinedOrInvalidOrUnknown;
1499:
1500: var nddOnt = Ia.Ftn.Cl.Models.Data.NetworkDesignDocument.OntByAccessName(accessName);
1501:
1502: var sendReadOntSipInfoCommandAgainAfterNSeconds = true;
1503:
1504: if (nddOnt != null)
1505: {
1506: if (nddOnt.Pon.PonGroup.Olt.Odf.Vendor == Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Vendor.Huawei)
1507: {
1508: Ia.Ftn.Cl.Models.Business.Huawei.Nce.CreateOntSipInfoOrVoipPstnUserAndOrVoipPstnAccount(service, accessName, port, out Ia.Cl.Models.Result createResult);
1509:
1510: Ia.Ftn.Cl.Models.Business.Huawei.Nce.ReadOntSipInfoOrVoipPstnUserAndOrVoipPstnAccount(service, accessName, port, sendReadOntSipInfoCommandAgainAfterNSeconds, out Ia.Cl.Models.Result readResult);
1511:
1512: result.AddSuccess("Create/Read: " + service + "|" + accessName + "|" + port + ": " + createResult.Message + "," + readResult.Message);
1513:
1514: if (!priorityServiceList.Contains(service)) priorityServiceList.Add(service);
1515: }
1516: else result.AddError("Access vendor is not Huawei. Access name: " + accessName + ".");
1517: }
1518: else result.AddError("NDD ONT is null for access name: " + accessName + ".");
1519: }
1520: else if (message.Process == Ia.Ftn.Cl.Models.Business.MessageQueue.Process.DeleteReadServiceAccess || message.Process == Ia.Ftn.Cl.Models.Business.MessageQueue.Process.DeleteReadNceOrAmsServiceAccessPort)
1521: {
1522: var service = message.Service;
1523: var accessName = message.AccessName;
1524: var port = (message.Port > 0) ? message.Port : Ia.Ftn.Cl.Models.Business.Default.PortUndefinedOrInvalidOrUnknown;
1525:
1526: var nddOnt = Ia.Ftn.Cl.Models.Data.NetworkDesignDocument.OntByAccessName(accessName);
1527:
1528: var sendReadOntSipInfoCommandAgainAfterNSeconds = true;
1529:
1530: if (nddOnt != null)
1531: {
1532: if (nddOnt.Pon.PonGroup.Olt.Odf.Vendor == Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Vendor.Huawei)
1533: {
1534: var vacatedAccessName = Ia.Ftn.Cl.Models.Business.Huawei.Nce.DeleteOntSipInfoOrVoipPstnUserAndOrVoipPstnAccount(service, accessName, port, out Ia.Cl.Models.Result deleteResult);
1535:
1536: Ia.Ftn.Cl.Models.Business.Huawei.Nce.ReadOntSipInfoOrVoipPstnUserAndOrVoipPstnAccount(service, vacatedAccessName, port, sendReadOntSipInfoCommandAgainAfterNSeconds, out Ia.Cl.Models.Result readResult);
1537:
1538: result.AddSuccess("Delete/Read: " + service + "|" + accessName + "|" + port + ": " + deleteResult.Message + "," + readResult.Message);
1539:
1540: if (!priorityServiceList.Contains(service)) priorityServiceList.Add(service);
1541: }
1542: else result.AddError("Access vendor is not Huawei. Access name: " + accessName + ".");
1543: }
1544: else result.AddError("NDD ONT is null for access name: " + accessName + ".");
1545: }
1546: else if (message.Process == Ia.Ftn.Cl.Models.Business.MessageQueue.Process.CreateReadNceMsanServiceMsanCabinetFrameFnSnPn)
1547: {
1548: var msanDevId = message.MsanDevId;
1549: var fn = message.Fn;
1550: var sn = message.Sn;
1551: var pn = message.Pn;
1552: var service = message.Service;
1553:
1554: var msanDev = (from m in Ia.Ftn.Cl.Models.Data.Huawei.Default.MsanDevList where m.Id == msanDevId select m).Single();
1555:
1556: result = Ia.Ftn.Cl.Models.Business.Huawei.Nce.CreateMsanVoipPstnUser(msanDevId, fn, sn, pn, service);
1557:
1558: Ia.Ftn.Cl.Models.Business.Huawei.Nce.ReadVoipPstnUser(service);
1559:
1560: result.AddSuccess("Create/Read: " + msanDev.Dev + "-" + fn + "-" + sn + "-" + pn + "|" + service + ": " + result.Message);
1561:
1562: if (!priorityServiceList.Contains(service)) priorityServiceList.Add(service);
1563: }
1564: else if (message.Process == Ia.Ftn.Cl.Models.Business.MessageQueue.Process.DeleteReadNceMsanService)
1565: {
1566: var service = message.Service;
1567:
1568: var readResult = new Ia.Cl.Models.Result();
1569:
1570: var vacatedLicList = Ia.Ftn.Cl.Models.Business.Huawei.Nce.DeleteMsanVoipPstnUser(service, out result);
1571:
1572: foreach (var vacatedLic in vacatedLicList)
1573: {
1574: Ia.Ftn.Cl.Models.Business.Huawei.Nce.ReadMsanVoipPstnUser(vacatedLic);
1575: }
1576:
1577: result.AddSuccess("Delete/Read: " + service + ": " + result.Message + "," + readResult.Message);
1578:
1579: if (!priorityServiceList.Contains(service)) priorityServiceList.Add(service);
1580: }
1581: else if (message.Process == Ia.Ftn.Cl.Models.Business.MessageQueue.Process.AccessCreated)
1582: {
1583: Ia.Ftn.Cl.Models.Data.Huawei.Default.AccessNameToMduDevDictionaryReset();
1584:
1585: result.AddSuccess("Access created: AccessNameToMduDevDictionary reset.");
1586: }
1587: else if (message.Process == Ia.Ftn.Cl.Models.Business.MessageQueue.Process.Synchronize)
1588: {
1589: var r = Ia.Ftn.Cl.Models.Business.Huawei.Nce.ManageSynchronizationBetweenAccessAndSwitchPast24Hours();
1590: result.AddResult("Manage: Synchronization: Access with Switch", r);
1591:
1592: var r2 = Ia.Ftn.Cl.Models.Business.Huawei.Nce.ManageDeleteMsanOfProvisionedImsServiceOrWithNoEquivalentInService();
1593: result.AddResult("Manage: Synchronization: Delete MSAN of provisioned IMS service", r2);
1594: }
1595: else if (message.Process == Ia.Ftn.Cl.Models.Business.MessageQueue.Process.ActiveApplicationRunningPermissionState)
1596: {
1597: Ia.Ftn.Cl.Models.Business.Default.PermitActiveApplicationsToRun = message.State;
1598:
1599: result.AddSuccess("PermitActiveApplicationsToRun: " + message.State);
1600: }
1601: else
1602: {
1603: throw new ArgumentOutOfRangeException("MessageQueue process " + message.Process.ToString() + " is undefined");
1604: }
1605:
1606: result.AddSuccess(message.AccessName + ":" + message.Service);
1607: }
1608: else
1609: {
1610:
1611: }
1612: }
1613:
1614: return result;
1615: }
1616:
1617: ////////////////////////////////////////////////////////////////////////////
1618:
1619: /// <summary>
1620: ///
1621: /// </summary>
1622: public static void ManageProperly(out Ia.Cl.Models.Result result)
1623: {
1624: string command;
1625:
1626: result = new Ia.Cl.Models.Result();
1627:
1628: command = Ia.Ftn.Cl.Models.Business.Huawei.Ems.ProperlySelectedSingleEmsCommandToManageOntNetworkElements;
1629:
1630: ems.SendQueue.Enqueue(command);
1631:
1632: result.AddSuccess(command);
1633: }
1634:
1635: ////////////////////////////////////////////////////////////////////////////
1636: ////////////////////////////////////////////////////////////////////////////
1637:
1638: /// <summary>
1639: ///
1640: /// </summary>
1641: public static void ReadDevList(out Ia.Cl.Models.Result result)
1642: {
1643: string command;
1644:
1645: result = new Ia.Cl.Models.Result();
1646:
1647: var redundantDevList = Ia.Ftn.Cl.Models.Data.Huawei.Dev.RedundantDevList();
1648:
1649: if (redundantDevList.Count == 0)
1650: {
1651: /*
1652: * List DEVs with DT: MA5600T (OLTs) (LST-DEV::DT=249:{ctag}::;)
1653: * List DEVs with DT: MA5603T (OLTs) (LST-DEV::DT=95:{ctag}::;)
1654: * List DEVs with DT: MA5616 (MDUs) (LST-DEV::DT=100:{ctag}::;)
1655: *
1656: * I can't read MA5878 using LST-DEV::DT, I have to use LST-DEV::DEV
1657: * e.g. LST-DEV::DEV=MDU-SAB-1443-001:{ctag}::;
1658: */
1659:
1660: switch (Ia.Cl.Models.Default.Random(99) % 3)
1661: {
1662: case 0: command = Ia.Ftn.Cl.Models.Data.Huawei.Ems.SendReadDevListByDt(ems, "MA5600T"); break;
1663: case 1: command = Ia.Ftn.Cl.Models.Data.Huawei.Ems.SendReadDevListByDt(ems, "MA5603T"); break;
1664: case 2: command = Ia.Ftn.Cl.Models.Data.Huawei.Ems.SendReadDevListByDt(ems, "MA5616"); ; break;
1665: default: command = string.Empty; break;
1666: }
1667:
1668: // delay to prevent mixing of next command output with this long LST-DEV command
1669: Ia.Ftn.Cl.Models.Business.Huawei.Nce.DelaySendQueue(10);
1670:
1671: result.AddSuccess("Reading Devs with devTypes: " + command);
1672: }
1673: else
1674: {
1675: throw new Exception("ReadDevList(): redundantDevList.Count != 0 there are duplicate names in EmsDev");
1676: }
1677: }
1678:
1679: ////////////////////////////////////////////////////////////////////////////
1680:
1681: /// <summary>
1682: ///
1683: /// </summary>
1684: public static void SequentiallyReadBoardListForDevAndOntListForMduDev(out Ia.Cl.Models.Result result)
1685: {
1686: result = new Ia.Cl.Models.Result();
1687:
1688: var dev = Ia.Ftn.Cl.Models.Business.Huawei.Dev.SequentialEmsDevListItem(out _, out string progressCounterString);
1689:
1690: if (dev != null)
1691: {
1692: Ia.Ftn.Cl.Models.Data.Huawei.Ems.SendReadBoardList(ems, dev.DEV);
1693:
1694: if (dev.Type == Ia.Ftn.Cl.Models.Business.Huawei.Dev.Type.Mdu) //&List DEVs with DT: MA5616 (MDUs) (LST-DEV::DT=100:{ctag}::;)
1695: {
1696: Ia.Ftn.Cl.Models.Data.Huawei.Ems.SendReadOntList(ems, dev.DID);
1697: }
1698:
1699: result.AddSuccess("dev: " + dev.DEV + ", " + progressCounterString);
1700: }
1701: else result.AddError("Dev is null.");
1702: }
1703:
1704: ////////////////////////////////////////////////////////////////////////////
1705:
1706: /// <summary>
1707: ///
1708: /// </summary>
1709: public static void SequentiallyReadPortListForBoard(out Ia.Cl.Models.Result result)
1710: {
1711: result = new Ia.Cl.Models.Result();
1712:
1713: var board = Ia.Ftn.Cl.Models.Business.Huawei.Board.SequentialEmsBoardListItem(out _, out string progressCounterString);
1714:
1715: if (board != null)
1716: {
1717: Ia.Ftn.Cl.Models.Data.Huawei.Ems.SendReadPortList(ems, board.EmsDev.DEV, board.FN, board.SN);
1718:
1719: result.AddSuccess("DEV: " + board.EmsDev.DEV + ", SN: " + board.SN + " " + progressCounterString);
1720: }
1721: else result.AddError("Board is null.");
1722: }
1723:
1724: ////////////////////////////////////////////////////////////////////////////
1725:
1726: /// <summary>
1727: ///
1728: /// </summary>
1729: public static void SequentiallyReadPortForMsan(out Ia.Cl.Models.Result result)
1730: {
1731: result = new Ia.Cl.Models.Result();
1732:
1733: var port = Ia.Ftn.Cl.Models.Business.Huawei.Dev.SequentialEmsMsanDevPortListItem(out _, out string progressCounterString);
1734:
1735: if (port != null)
1736: {
1737: Ia.Ftn.Cl.Models.Data.Huawei.Ems.SendReadVoipPstnUser(ems, port.EmsBoard.EmsDev.DEV, port.SN, port.PN);
1738:
1739: result.AddSuccess("DEV: " + port.EmsBoard.EmsDev.DEV + ", SN: " + port.SN + " " + progressCounterString);
1740: }
1741: else result.AddError("port is null.");
1742: }
1743:
1744: ////////////////////////////////////////////////////////////////////////////
1745:
1746: /// <summary>
1747: ///
1748: /// </summary>
1749: public static void DelaySendQueue(int count)
1750: {
1751: if (count > 0)
1752: {
1753: for (var i = 0; i < count; i++)
1754: {
1755: ems.SendQueue.Enqueue(string.Empty);
1756: }
1757: }
1758: }
1759:
1760: ////////////////////////////////////////////////////////////////////////////
1761:
1762: /// <summary>
1763: ///
1764: /// </summary>
1765: public static void DelaySystemIsBusyResendQueue(int count)
1766: {
1767: if (count > 0)
1768: {
1769: for (var i = 0; i < count; i++)
1770: {
1771: ems.SystemIsBusyResendQueue.Enqueue(string.Empty);
1772: }
1773: }
1774: }
1775:
1776: ////////////////////////////////////////////////////////////////////////////
1777:
1778: /// <summary>
1779: ///
1780: /// </summary>
1781: public static void DelaySystemIsBusyResendQueueByEmsKeepAlive(int count)
1782: {
1783: if (count > 0)
1784: {
1785: for (var i = 0; i < count; i++)
1786: {
1787: ems.SystemIsBusyResendQueue.Enqueue(Ia.Ftn.Cl.Models.Business.Huawei.Ems.EmsKeepAliveCommand);
1788: }
1789: }
1790: }
1791:
1792: ////////////////////////////////////////////////////////////////////////////
1793:
1794: /// <summary>
1795: ///
1796: /// </summary>
1797: private static void EvaluateSendReadOntSipInfoCommandAgainAfterNSecondsResendQueue()
1798: {
1799: var nowDataTime = DateTime.UtcNow.AddHours(3);
1800: var commandsToRemoveList = new List<string>();
1801:
1802: foreach (var kvp in ems.OntSipInfoCommandAgainAfterNSecondsToDateTimeDictionary)
1803: {
1804: var dateTime = kvp.Value.AddSeconds(Ia.Ftn.Cl.Models.Business.Huawei.Nce.SendReadOntSipInfoCommandAgainAfterNSeconds);
1805:
1806: if (dateTime < nowDataTime)
1807: {
1808: var command = kvp.Key;
1809:
1810: ems.OntSipInfoCommandAgainAfterNSecondsResendQueue.Enqueue(command);
1811:
1812: commandsToRemoveList.Add(command);
1813: }
1814: }
1815:
1816: foreach (var command in commandsToRemoveList)
1817: {
1818: ems.OntSipInfoCommandAgainAfterNSecondsToDateTimeDictionary.Remove(command);
1819: }
1820: }
1821:
1822: ////////////////////////////////////////////////////////////////////////////
1823:
1824: /// <summary>
1825: ///
1826: /// </summary>
1827: public static void TestService(string service)
1828: {
1829: var list = Ia.Ftn.Cl.Models.Business.Huawei.Ems.EmsCommandsToRetriveOntNetworkElementDataByService(service);
1830:
1831: foreach (string s in list) ems.SendQueue.Enqueue(s);
1832: }
1833:
1834: ////////////////////////////////////////////////////////////////////////////
1835:
1836: /// <summary>
1837: ///
1838: /// </summary>
1839: public static void TestAccess(string accessName)
1840: {
1841: var list = Ia.Ftn.Cl.Models.Business.Huawei.Ems.EmsCommandsToRetriveOntNetworkElementDataByAccessName(accessName);
1842:
1843: foreach (string s in list) ems.SendQueue.Enqueue(s);
1844: }
1845:
1846: ////////////////////////////////////////////////////////////////////////////
1847: ////////////////////////////////////////////////////////////////////////////
1848: }
1849:
1850: ////////////////////////////////////////////////////////////////////////////
1851: ////////////////////////////////////////////////////////////////////////////
1852: }
- 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.
- 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.
- 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) :
- 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) :