Public general use code classes and xml files that we've compiled and used over the years:
Element Management System (EMS) support class for Huawei's Fixed Telecommunications Network (FTN) business model.
1: using System;
2: using System.Collections;
3: using System.Collections.Generic;
4: using System.Configuration;
5: using System.Data;
6: using System.Linq;
7: using System.Text.RegularExpressions;
8:
9: namespace Ia.Ftn.Cl.Models.Business.Huawei
10: {
11: ////////////////////////////////////////////////////////////////////////////
12:
13: /// <summary publish="true">
14: /// Element Management System (EMS) support class for Huawei's Fixed Telecommunications Network (FTN) business model.
15: /// </summary>
16:
17: /// <remarks>
18: /// Copyright © 2016-2022 Jasem Y. Al-Shamlan (info@ia.com.kw), Integrated Applications - Kuwait. All Rights Reserved.
19: ///
20: /// This library is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by
21: /// the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
22: ///
23: /// This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
24: /// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
25: ///
26: /// You should have received a copy of the GNU General Public License along with this library. If not, see http://www.gnu.org/licenses.
27: ///
28: /// Copyright notice: This notice may not be removed or altered from any source distribution.
29: /// </remarks>
30: public class Ems
31: {
32: private static Queue<string> emsCommandQueue = new Queue<string>();
33: private static Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Olt olt = Ia.Ftn.Cl.Models.Data.NetworkDesignDocument.HuaweiOltList.PickRandom();
34:
35: /// <summary/>
36: public enum EmsOpcode
37: {
38: LstDevByDt, LstDevByDev, LstDevByDevIp, LstBoard, LstPort, LstOnt, LstVag, ModOntAlias, ModOntAliasAnnul, ModOntVaprofileAluSipB, LstOntSipInfo, CfgOntVainDiv, CfgOntVainDivVacant, AddVoipPstnUser, AddMsanVoipPstnUser, LstVoipPstnUser, DelVoipPstnUser, CfgVoipPstnAccount, CfgVoipPstnAccountVacant, SaveDev, ResetOnt
39: }
40:
41: /// <summary/>
42: public enum BellcoreState { Unknown = 0, IsNr = 1, OosAu, OosMa, OosAuma };
43:
44: /// <summary/>
45: public static string Host { get { return Ia.Cl.Models.ApplicationConfiguration.GetSetting("AppSettings:NceServerHost"); } }
46:
47: /// <summary/>
48: public static int Port { get { return int.Parse(Ia.Cl.Models.ApplicationConfiguration.GetSetting("AppSettings:NceServerPort")); } }
49:
50: /// <summary/>
51: public static string LoginUser { get { return PrepareCtaggedCommand(Ia.Cl.Models.ApplicationConfiguration.GetSetting("AppSettings:NceServerLoginUser")); } }
52:
53: /// <summary/>
54: public static string LogoutUser { get { return PrepareCtaggedCommand(Ia.Cl.Models.ApplicationConfiguration.GetSetting("AppSettings:NceServerLogoutUser")); } }
55:
56: ////////////////////////////////////////////////////////////////////////////
57:
58: /// <summary>
59: /// Response class of NCE TL1 NBI following the "10.3 Response Format Description standard" in iManager NCE Unified Network Management System Guide.
60: /// </summary>
61: public class Response
62: {
63: /// <summary/>
64: public enum CompletionCodeType { DENY, COMPLD };
65:
66: /// <summary/>
67: public enum CommandType { Operation, Query };
68:
69: /// <summary/>
70: public bool OperationCommand { get { return !QueryCommand; } }
71:
72: /// <summary/>
73: public bool QueryCommand { get; set; }
74:
75: /// <summary/>
76: public int BlockTag { get; set; }
77:
78: /// <summary/>
79: public int CurrentBlockCount { get; set; }
80:
81: /// <summary/>
82: public int TotalCount { get; set; }
83:
84: /// <summary/>
85:
86: public string Ctag { get; set; }
87:
88: /// <summary/>
89: public string CompletionCode { get; set; }
90:
91: /// <summary/>
92: public string Title { get; set; }
93:
94: /// <summary/>
95: public long En { get; set; }
96:
97: /// <summary/>
98: public string Endesc { get; set; }
99:
100: /// <summary/>
101: public Ia.Ftn.Cl.Models.Client.Huawei.Ems.ResultCode ResultCode { get; set; }
102:
103: /// <summary/>
104: public string CommandFromCorrelationTagDictionaryByCtag
105: {
106: get
107: {
108: string opcode;
109:
110: if (Ia.Ftn.Cl.Models.Data.Huawei.Ems.CorrelationTagDictionary.ContainsKey(Ctag)) opcode = Ia.Ftn.Cl.Models.Data.Huawei.Ems.CorrelationTagDictionary[Ctag];
111: else opcode = string.Empty;
112:
113: return opcode;
114: }
115: }
116:
117: /// <summary/>
118: public DataTable QueryDataTable { get; set; }
119:
120: /// <summary/>
121: public Response() { }
122: }
123:
124: ////////////////////////////////////////////////////////////////////////////
125:
126: /// <summary>
127: ///
128: /// </summary>
129: public Ems() { }
130:
131: ////////////////////////////////////////////////////////////////////////////
132: ////////////////////////////////////////////////////////////////////////////
133:
134: /// <summary>
135: ///
136: /// </summary>
137: private static List<string> PrepareCtaggedCommand(List<string> commandList)
138: {
139: List<string> ctaggedCommandList;
140:
141: if (commandList.Count > 0)
142: {
143: ctaggedCommandList = new List<string>(commandList.Count);
144:
145: foreach (string command in commandList)
146: {
147: ctaggedCommandList.Add(PrepareCtaggedCommand(command));
148: }
149: }
150: else ctaggedCommandList = new List<string>();
151:
152: return ctaggedCommandList;
153: }
154:
155: ////////////////////////////////////////////////////////////////////////////
156:
157: /// <summary>
158: ///
159: /// </summary>
160: public static string PrepareCtaggedCommand(string command)
161: {
162: string ctaggedCommand, ctag;
163:
164: if (command.Contains("{ctag}"))
165: {
166: ctag = Ia.Cl.Models.Default.RandomNumber(12);
167:
168: Ia.Ftn.Cl.Models.Data.Huawei.Ems.CorrelationTagDictionary[ctag] = command;
169:
170: ctaggedCommand = command.Replace("{ctag}", ctag);
171: }
172: else
173: {
174: ctaggedCommand = string.Empty;
175: }
176:
177: return ctaggedCommand;
178: }
179:
180: ////////////////////////////////////////////////////////////////////////////
181:
182: /// <summary>
183: ///
184: /// </summary>
185: public static string PrepareCtaggedCommand(string command, string ctag)
186: {
187: string ctaggedCommand;
188:
189: if (command.Contains("{ctag}"))
190: {
191: Ia.Ftn.Cl.Models.Data.Huawei.Ems.CorrelationTagDictionary[ctag] = command;
192:
193: ctaggedCommand = command.Replace("{ctag}", ctag);
194: }
195: else
196: {
197: ctaggedCommand = string.Empty;
198: }
199:
200: return ctaggedCommand;
201: }
202:
203: ////////////////////////////////////////////////////////////////////////////
204: ////////////////////////////////////////////////////////////////////////////
205:
206: /// <summary>
207: ///
208: /// </summary>
209: public static string HuaweiAccessNameFormatFromInaccurateHuaweiFileAndEmsNameFormat(string line)
210: {
211: // see: ConstructMduNameFromNddOntAccessName(string accessName)
212:
213: if (!Regex.IsMatch(line, @"^(\w{3})-(\d{3})-(\d{3})$") && !Regex.IsMatch(line, @"^(\w{3})-([1-9]\d{3})-(\d{3})$"))
214: {
215: /*
216: replace:
217: and DEV not like 'MDU-___-01-____-___'
218: and DEV not like 'MDU-___-B4-___-___'
219: and DEV not like 'MDU-___-B4-____-___'
220: and DEV not like '___-B4-___-___'
221: and DEV not like '___-B4-____-___'
222: and DEV not like 'ONT-___-___-___'
223: and DEV not like 'MDU--___-____-___'
224: and DEV not like 'ONT-___-____-___'
225: and DEV not like '___-___-___V8R016C10S200'
226: and DEV not like '___-____-___sHERIFARD'
227: and DEV not like 'QSR1319-002'
228: */
229:
230: line = line.Replace("MDU--", ""); // must be before line.Replace("MDU-", "");
231: line = line.Replace("MDU-", "");
232: line = line.Replace("MDI-", "");
233: line = line.Replace("B4-", "");
234: line = line.Replace("-01-", "-");
235: line = line.Replace("-4-", "-");
236: line = line.Replace("ONT-", "");
237: line = line.Replace("V8R016C10S200", "");
238: line = line.Replace("sHERIFARD", "");
239: line = line.Replace("QSR1319-002", "QSR-1319-002");
240:
241: /*
242: regex:
243: and DEV not like '___.___._'
244: and DEV not like 'MDU-___-0___-___'
245: and DEV not like 'MDU-___-___-___'
246: and DEV not like 'MDU-___-____-___'
247: and DEV not like '___-____-__'
248: and DEV not like '___-__-___'
249: and DEV not like '___-_-___'
250: and DEV not like '___[_]___-___'
251: and DEV not like '___ ____-___'
252: and DEV not like '___0____-___'
253: */
254:
255: // below must be after line.Replace("MDU-", "");
256: line = Regex.Replace(line, @"^(\w{3})\.(\d{3})\.(\d)$", "$1-$2-00$3");
257: line = Regex.Replace(line, @"^(\w{3})-0(\d{3})-(\d{3})$", "$1-$2-$3");
258: line = Regex.Replace(line, @"^(\w{3})-(\d{3})-(\d{3})$", "$1-$2-$3");
259: line = Regex.Replace(line, @"^(\w{3})-(\d{4})-(\d{3})$", "$1-$2-$3");
260: line = Regex.Replace(line, @"^(\w{3})-(\d{4})-(\d{2})$", "$1-$2-$3");
261: line = Regex.Replace(line, @"^(\w{3})-(\d{2})-(\d{3})$", "$1-$2-$3");
262: line = Regex.Replace(line, @"^(\w{3})_(\d{3})-(\d{3})$", "$1-$2-$3");
263: line = Regex.Replace(line, @"^(\w{3})_(\d{3})-(\d{3})$", "$1-$2-$3");
264: line = Regex.Replace(line, @"^(\w{3}) (\d{4})-(\d{3})$", "$1-$2-$3");
265: line = Regex.Replace(line, @"^(\w{3})0(\d{4})-(\d{3})$", "$1-$2-$3");
266: }
267:
268: /*
269: no change
270: and DEV not like '___-___-___'
271: and DEV not like '___-____-___'
272: */
273:
274: return line;
275:
276: /*
277: // below do to all dev and alias in EMS
278: using (var db = new Ia.Ftn.Cl.Model.Ftn())
279: {
280: var list = (from eo in db.EmsOnts select eo.ALIAS).ToList();
281:
282: sb = new StringBuilder(list.Count * 50);
283:
284: foreach (string l in list)
285: {
286: var v = Ia.Ftn.Cl.Model.Business.Huawei.Ems.HuaweiAccessNameFormatFromInaccurateHuaweiFileAndEmsNameFormat(l);
287:
288: if(l != v) sb.AppendLine("[" + l + "]: [" + v + "]");
289: }
290:
291: filePath = Environment.GetFolderPath(Environment.SpecialFolder.Desktop) + "\\HuaweiAccessNameFormatFromInaccurateHuaweiFileAndEmsNameFormat.txt";
292: File.WriteAllText(filePath, sb.ToString());
293: }
294: */
295: }
296:
297: ////////////////////////////////////////////////////////////////////////////
298:
299: /// <summary>
300: ///
301: /// </summary>
302: public static List<string> ConstructPossibleMduNameListFromNddOntAccessName(Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Ont nddOnt)
303: {
304: // see RemoveMduNameInHuaweiOntActivationReportSpecificNameFormat(string line)
305: List<string> possibleMduNameList;
306:
307: possibleMduNameList = new List<string>();
308:
309: // SAB-1443-001
310: possibleMduNameList.Add(nddOnt.Access.Symbol + "-" + nddOnt.Access.Pon.ToString().PadLeft(3, '0') + "-" + nddOnt.Access.Ont.ToString().PadLeft(3, '0'));
311:
312: // MDU-SAB-1443-001
313: possibleMduNameList.Add("MDU-" + nddOnt.Access.Symbol + "-" + nddOnt.Access.Pon.ToString().PadLeft(3, '0') + "-" + nddOnt.Access.Ont.ToString().PadLeft(3, '0'));
314:
315: if (nddOnt.Access.Name == "MGF.1306.1")
316: {
317: // MDU-MGF-B4-1306-001
318: possibleMduNameList.Add("MDU-MGF-B4-1306-001");
319: }
320: else if (nddOnt.Access.Name == "MGF.1522.4")
321: {
322: // MGF-B4-1522-004
323: possibleMduNameList.Add("MGF-B4-1522-004");
324: }
325: else if (nddOnt.Access.Name == "SAA.547.3")
326: {
327: // ONT-SAA-547-003
328: possibleMduNameList.Add("ONT-SAA-547-003");
329: }
330:
331: return possibleMduNameList;
332: }
333:
334: ////////////////////////////////////////////////////////////////////////////
335:
336: /// <summary>
337: ///
338: /// </summary>
339: public static string Semicolon
340: {
341: get
342: {
343: return ";";
344: }
345: }
346:
347: ////////////////////////////////////////////////////////////////////////////
348:
349: /// <summary>
350: ///
351: /// </summary>
352: public static string EmsKeepAliveCommand
353: {
354: get
355: {
356: return PrepareCtaggedCommand("SHAKEHAND:::{ctag}::;");
357: }
358: }
359:
360: ////////////////////////////////////////////////////////////////////////////
361:
362: /// <summary>
363: ///
364: /// </summary>
365: public static string ProperlySelectedSingleEmsCommandToManageOntNetworkElements
366: {
367: get
368: {
369: string command;
370: List<string> list;
371:
372: command = EmsKeepAliveCommand;
373:
374: if (emsCommandQueue.Count == 0)
375: {
376: olt = Ia.Ftn.Cl.Models.Data.NetworkDesignDocument.HuaweiOltList.NextOf(olt);
377:
378: list = Ia.Ftn.Cl.Models.Business.Huawei.Ems.EmsCommandsToRetrieveOntAndOntSipInfoWithDefinedFamilyType_EmsCommandsToRetrieveOntForOntsDefinedInNddDocument_EmsCommandsToUpdateAndRetrieveOntAliasWithItsAccessNameList(olt);
379:
380: emsCommandQueue = new Queue<string>(list);
381: }
382:
383: if (emsCommandQueue.Count > 0) command = emsCommandQueue.Dequeue();
384:
385: return command;
386: }
387: }
388:
389: ////////////////////////////////////////////////////////////////////////////
390:
391: /// <summary>
392: ///
393: /// </summary>
394: public static List<string> EmsCommandsToRetriveOntNetworkElementDataByAccessName(string input)
395: {
396: Ia.Cl.Models.Result result;
397: List<string> list;
398:
399: result = new Ia.Cl.Models.Result();
400: list = new List<string>(5);
401:
402: if (!string.IsNullOrEmpty(input))
403: {
404: if (input.Length > 0)
405: {
406: input = input.Trim();
407: input = input.ToUpper();
408:
409: if (Ia.Ftn.Cl.Models.Business.Access.AccessNameIsInAValidFormat(input))
410: {
411: if (Ia.Ftn.Cl.Models.Data.NetworkDesignDocument.AccessNameIsWithinAllowedOntList(input, out string accessName))
412: {
413: list = Ia.Ftn.Cl.Models.Business.Huawei.Ems.EmsCommandsToRetrieveSfuOntAndOntSipInfoOrMduOntAndVoipPstnUserAndVagAndBoardForSingleOntsWithDefinedFamilyTypeOrDefinedMduDevAndForItIfThisSingleOntDefinedInNddDocumentList(accessName);
414: }
415: else
416: {
417: result.AddError("EmsCommandsToRetriveOntNetworkElementDataByAccessName(): Error: accessName is not within allowed ONT list. ");
418: }
419: }
420: else
421: {
422: result.AddError("EmsCommandsToRetriveOntNetworkElementDataByAccessName(): Error: accessName is not valid. ");
423: }
424: }
425: else
426: {
427: result.AddError("EmsCommandsToRetriveOntNetworkElementDataByAccessName(): Error: accessName is empty. ");
428: }
429: }
430: else
431: {
432: result.AddError("EmsCommandsToRetriveOntNetworkElementDataByAccessName(): Error: accessName is null or empty. ");
433: }
434:
435: if (list.Count == 0) list.Add(EmsKeepAliveCommand);
436:
437: return list;
438: }
439:
440: ////////////////////////////////////////////////////////////////////////////
441:
442: /// <summary>
443: ///
444: /// </summary>
445: public static List<string> EmsCommandsToRetriveOntNetworkElementDataByService(string service)
446: {
447: Ia.Cl.Models.Result result;
448: List<string> list;
449:
450: result = new Ia.Cl.Models.Result();
451: list = new List<string>(5);
452:
453: if (!string.IsNullOrEmpty(service))
454: {
455: service = service.Trim();
456: service = service.ToUpper();
457:
458: if (Ia.Ftn.Cl.Models.Business.Service.ServiceHasEightDigitsAndIsWithinAllowedDomainList(service))
459: {
460: list = Ia.Ftn.Cl.Models.Business.Huawei.Ems.EmsCommandsToRetrieveVoipPstnUser(service);
461: }
462: else
463: {
464: result.AddError("EmsCommandsToRetriveOntNetworkElementDataByService(): Error: Service number \"" + service + "\" does not belong to the network.");
465: }
466: }
467: else
468: {
469: result.AddError("EmsCommandsToRetriveOntNetworkElementDataByService(): Error: service is null or empty.");
470: }
471:
472: if (list.Count == 0) list.Add(EmsKeepAliveCommand);
473:
474: return list;
475: }
476:
477: ////////////////////////////////////////////////////////////////////////////
478: ////////////////////////////////////////////////////////////////////////////
479:
480: /// <summary>
481: ///
482: /// </summary>
483: public static string ReadDevListByDtCommand(string devType)
484: {
485: string command;
486:
487: command = FormatEmsDevLstCommand(EmsOpcode.LstDevByDt, devType);
488:
489: return command;
490: }
491:
492: ////////////////////////////////////////////////////////////////////////////
493:
494: /// <summary>
495: ///
496: /// </summary>
497: public static string ReadDevListByDevCommand(string dev)
498: {
499: string command;
500:
501: command = FormatEmsDevLstCommand(EmsOpcode.LstDevByDev, dev);
502:
503: return command;
504: }
505:
506: ////////////////////////////////////////////////////////////////////////////
507:
508: /// <summary>
509: ///
510: /// </summary>
511: public static string SaveDevCommand(Ia.Ftn.Cl.Models.Business.Huawei.Dev.MduDev mduDev)
512: {
513: return FormatEmsDevLstCommand(EmsOpcode.SaveDev, mduDev.Dev);
514: }
515:
516: ////////////////////////////////////////////////////////////////////////////
517:
518: /// <summary>
519: ///
520: /// </summary>
521: public static string SaveDevCommand(Ia.Ftn.Cl.Models.Business.Huawei.Dev.MsanDev msanDev)
522: {
523: return FormatEmsDevLstCommand(EmsOpcode.SaveDev, msanDev.Dev);
524: }
525:
526: ////////////////////////////////////////////////////////////////////////////
527:
528: /// <summary>
529: ///
530: /// </summary>
531: public static string SaveDevCommand(string dev)
532: {
533: return FormatEmsDevLstCommand(EmsOpcode.SaveDev, dev);
534: }
535:
536: ////////////////////////////////////////////////////////////////////////////
537:
538: /// <summary>
539: ///
540: /// </summary>
541: public static string ReadBoardListCommand(string dev)
542: {
543: string command;
544:
545: command = FormatEmsBoardLstCommand(EmsOpcode.LstBoard, dev);
546:
547: return command;
548: }
549:
550: ////////////////////////////////////////////////////////////////////////////
551:
552: /// <summary>
553: ///
554: /// </summary>
555: public static string ReadOntListCommand(int did)
556: {
557: string command;
558:
559: command = FormatEmsLstCommand(EmsOpcode.LstOnt, did);
560:
561: return command;
562: }
563:
564: ////////////////////////////////////////////////////////////////////////////
565:
566: /// <summary>
567: ///
568: /// </summary>
569: public static string ReadOntCommand(Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Ont ont)
570: {
571: string command;
572:
573: command = FormatEmsLstCommand(EmsOpcode.LstOnt, ont);
574:
575: return command;
576: }
577:
578: ////////////////////////////////////////////////////////////////////////////
579:
580: /// <summary>
581: ///
582: /// </summary>
583: public static string UpdateOntFromH248ToSipCommand(Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Ont ont)
584: {
585: string command;
586:
587: command = FormatEmsModCommand(EmsOpcode.ModOntVaprofileAluSipB, ont);
588:
589: return command;
590: }
591:
592: ////////////////////////////////////////////////////////////////////////////
593:
594: /// <summary>
595: ///
596: /// </summary>
597: public static string ReadPortListCommand(string dev, int fn, int sn)
598: {
599: string command;
600:
601: command = FormatEmsPortLstCommand(EmsOpcode.LstPort, dev, fn, sn);
602:
603: return command;
604: }
605:
606: ////////////////////////////////////////////////////////////////////////////
607: ////////////////////////////////////////////////////////////////////////////
608:
609: /// <summary>
610: ///
611: /// </summary>
612: public static string CreateOrModifyOntSipInfoCommand(Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Ont nddOnt, string service, int telPort)
613: {
614: string command;
615:
616: command = FormatEmsCfgOntVainDivCommand(EmsOpcode.CfgOntVainDiv, nddOnt, service, telPort);
617:
618: return command;
619: }
620:
621: ////////////////////////////////////////////////////////////////////////////
622:
623: /// <summary>
624: ///
625: /// </summary>
626: public static string ReadOntSipInfoCommand(Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Ont nddOnt)
627: {
628: string command;
629:
630: command = FormatEmsLstCommand(EmsOpcode.LstOntSipInfo, nddOnt);
631:
632: return command;
633: }
634:
635: ////////////////////////////////////////////////////////////////////////////
636:
637: /// <summary>
638: ///
639: /// </summary>
640: public static string ReadOntSipInfoCommand(Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Ont nddOnt, string ctag)
641: {
642: string command;
643:
644: command = FormatEmsLstCommand(EmsOpcode.LstOntSipInfo, nddOnt, ctag);
645:
646: return command;
647: }
648:
649: ////////////////////////////////////////////////////////////////////////////
650:
651: /// <summary>
652: ///
653: /// </summary>
654: public static string VacateOntSipInfoCommand(Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Ont nddOnt, string service, int telPort)
655: {
656: string command;
657:
658: command = FormatEmsCfgOntVainDivCommand(EmsOpcode.CfgOntVainDivVacant, nddOnt, service, telPort);
659:
660: return command;
661: }
662:
663: ////////////////////////////////////////////////////////////////////////////
664:
665: /// <summary>
666: ///
667: /// </summary>
668: public static string ResetOntCommand(Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Ont nddOnt)
669: {
670: var command = FormatEmsResetCommand(EmsOpcode.ResetOnt, nddOnt);
671:
672: return command;
673: }
674:
675: ////////////////////////////////////////////////////////////////////////////
676:
677: /// <summary>
678: ///
679: /// </summary>
680: public static string CreateOrModifyVoipPstnUserCommand(Ia.Ftn.Cl.Models.Business.Huawei.Dev.MduDev mduDev, Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Ont nddOnt, string service, int sn, int port)
681: {
682: string command;
683:
684: if (nddOnt != null)
685: {
686: command = FormatEmsVoipPstnUserCommand(EmsOpcode.AddVoipPstnUser, mduDev.Dev, nddOnt.Rack, sn, port, service);
687: }
688: else command = string.Empty;
689:
690: return command;
691: }
692:
693: ////////////////////////////////////////////////////////////////////////////
694:
695: /// <summary>
696: ///
697: /// </summary>
698: public static string CreateOrModifyMsanVoipPstnUserCommand(Ia.Ftn.Cl.Models.Business.Huawei.Dev.MsanDev msanDev, int fn, int sn, int pn, string service)
699: {
700: string command;
701:
702: if (msanDev != null)
703: {
704: command = FormatEmsVoipPstnUserCommand(EmsOpcode.AddMsanVoipPstnUser, msanDev.Dev, fn, sn, pn, service);
705: }
706: else command = string.Empty;
707:
708: return command;
709: }
710:
711: ////////////////////////////////////////////////////////////////////////////
712:
713: /// <summary>
714: ///
715: /// </summary>
716: public static string ReadVoipPstnUserCommand(string dev, int sn, int pn)
717: {
718: var command = FormatEmsLstVoipPstnUserCommand(EmsOpcode.LstVoipPstnUser, dev, sn, pn);
719:
720: return command;
721: }
722:
723: ////////////////////////////////////////////////////////////////////////////
724:
725: /// <summary>
726: ///
727: /// </summary>
728: public static string DeleteVoipPstnUserCommand(Ia.Ftn.Cl.Models.Business.Huawei.Dev.MduDev mduDev, Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Ont nddOnt, string service, int sn, int telPort)
729: {
730: string command;
731:
732: if (nddOnt != null)
733: {
734: command = FormatEmsVoipPstnUserCommand(EmsOpcode.DelVoipPstnUser, mduDev.Dev, nddOnt.Rack, sn, telPort, service);
735: }
736: else command = string.Empty;
737:
738: return command;
739: }
740:
741: ////////////////////////////////////////////////////////////////////////////
742:
743: /// <summary>
744: ///
745: /// </summary>
746: public static string DeleteVoipPstnUserCommand(string dev, int fn, int sn, int pn)
747: {
748: return FormatEmsVoipPstnUserCommand(EmsOpcode.DelVoipPstnUser, dev, fn, sn, pn, string.Empty);
749: }
750:
751: ////////////////////////////////////////////////////////////////////////////
752:
753: /// <summary>
754: ///
755: /// </summary>
756: public static string CreateOrModifyVoipPstnAccountCommand(Ia.Ftn.Cl.Models.Business.Huawei.Dev.MduDev mduDev, Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Ont nddOnt, string service, int sn, int telPort)
757: {
758: var command = FormatEmsCfgVoipPstnAccountCommand(EmsOpcode.CfgVoipPstnAccount, mduDev.Dev, nddOnt.Pon.PonGroup.Olt.Odf.Router.Vendor, nddOnt.Rack, service, sn, telPort);
759:
760: return command;
761: }
762:
763: ////////////////////////////////////////////////////////////////////////////
764:
765: /// <summary>
766: ///
767: /// </summary>
768: public static string ReadVoipPstnAccountCommand(Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Ont nddOnt)
769: {
770: string command;
771:
772: command = null; // FormatEmsLstCommand(EmsOpcode.LstOntSipInfo, nddOnt);
773:
774: return command;
775: }
776:
777: ////////////////////////////////////////////////////////////////////////////
778:
779: /// <summary>
780: ///
781: /// </summary>
782: public static string VacateVoipPstnAccountCommand(Ia.Ftn.Cl.Models.Business.Huawei.Dev.MduDev mduDev, Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Ont nddOnt, string service, int sn, int telPort)
783: {
784: var command = FormatEmsCfgVoipPstnAccountCommand(EmsOpcode.CfgVoipPstnAccountVacant, mduDev.Dev, nddOnt.Pon.PonGroup.Olt.Odf.Router.Vendor, nddOnt.Rack, service, sn, telPort);
785:
786: return command;
787: }
788:
789: ////////////////////////////////////////////////////////////////////////////
790:
791: /// <summary>
792: ///
793: /// </summary>
794: public static string VacateVoipPstnAccountCommand(string dev, int fn, int sn, int pn)
795: {
796: var command = FormatEmsCfgVoipPstnAccountCommand(EmsOpcode.CfgVoipPstnAccountVacant, dev, Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Vendor.Undefined, fn, string.Empty, sn, pn);
797:
798: return command;
799: }
800:
801: ////////////////////////////////////////////////////////////////////////////
802: ////////////////////////////////////////////////////////////////////////////
803:
804: /// <summary>
805: ///
806: /// </summary>
807: private static string FormatEmsLstCommand(EmsOpcode amsOpcode, int did)
808: {
809: return FormatEmsLstCommand(amsOpcode, 0, did, null, string.Empty);
810: }
811:
812: /*
813: ////////////////////////////////////////////////////////////////////////////
814:
815: /// <summary>
816: ///
817: /// </summary>
818: private static string FormatEmsLstCommand(EmsOpcode amsOpcode, Ia.Ftn.Cl.Model.Business.NetworkDesignDocument.Pon pon)
819: {
820: return FormatEmsLstCommand(amsOpcode, 0, 0, pon, null, string.Empty);
821: }
822: */
823:
824: ////////////////////////////////////////////////////////////////////////////
825:
826: /// <summary>
827: ///
828: /// </summary>
829: private static string FormatEmsLstCommand(EmsOpcode amsOpcode, Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Ont ont)
830: {
831: return FormatEmsLstCommand(amsOpcode, 0, 0, ont, string.Empty);
832: }
833:
834: ////////////////////////////////////////////////////////////////////////////
835:
836: /// <summary>
837: ///
838: /// </summary>
839: private static string FormatEmsLstCommand(EmsOpcode amsOpcode, Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Ont ont, string ctag)
840: {
841: return FormatEmsLstCommand(amsOpcode, 0, 0, ont, ctag);
842: }
843:
844: ////////////////////////////////////////////////////////////////////////////
845:
846: /// <summary>
847: ///
848: /// </summary>
849: private static string FormatEmsLstCommand(EmsOpcode amsOpcode, Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Ont ont, int telPort)
850: {
851: return FormatEmsLstCommand(amsOpcode, telPort, 0, ont, string.Empty);
852: }
853:
854: ////////////////////////////////////////////////////////////////////////////
855:
856: /// <summary>
857: ///
858: /// </summary>
859: private static string FormatEmsLstCommand(EmsOpcode amsOpcode, int telPort, int did, Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Ont ont, string ctag)
860: {
861: int sn, pn, ontId;
862: string command;
863:
864: if (amsOpcode == EmsOpcode.LstOnt)
865: {
866: if (ont != null)
867: {
868: sn = ont.CardSlot;
869: pn = ont.Port;
870: ontId = ont.InternalNumber;
871:
872: //command = "LST-ONT::DEV=" + ont.Pon.PonGroup.Olt.EmsName + ",FN=0,SN=" + sn + ",PN=" + pn + ",ONTID=" + ontId + ":{ctag}::;";
873: command = "LST-ONT::DEV=" + ont.Pon.PonGroup.Olt.EmsName + ",FN=0,SN=" + sn + ",PN=" + pn + ",ONTID=" + ontId + ":{ctag}::SHOWOPTION=SERIALNUM VAPROF;";
874: //command = "LST-ONT::DEV=" + ont.Pon.PonGroup.Olt.EmsName + ",FN=0,SN=" + sn + ",PN=" + pn + ",ONTID=" + ontId + ":{ctag}::SHOWOPTION=SERIALNUM PWD LOID CHECKCODE ALMPROF DEV VLAN PRI IP MASK GATE ROUTEIP ROUTEMASK NEXTHOP SNMPPROF OPTALMPROF VAPROF MACLEARN SRVLEVELPROF HARDWAREVERSION LSTUPTIME LSTDOWNTIME DEVCURRENTTIME VASPROFILESET;";
875: }
876: /*
877: else if (pon != null)
878: {
879: sn = pon.CardSlot;
880: pn = pon.Port;
881:
882: command = "LST-ONT::DEV=" + pon.PonGroup.Olt.EmsName + ",FN=0,SN=" + sn + ",PN=" + pn + ":{ctag}::;";
883: }
884: */
885: else if (did > 0)
886: {
887: command = "LST-ONT::DID=" + did + ":{ctag}::;";
888: }
889: else
890: {
891: command = string.Empty;
892: }
893: }
894: else if (amsOpcode == EmsOpcode.LstOntSipInfo)
895: {
896: if (ont != null)
897: {
898: sn = ont.CardSlot;
899: pn = ont.Port;
900: ontId = ont.InternalNumber;
901:
902: command = "LST-ONTSIPINFO::DEV=" + ont.Pon.PonGroup.Olt.EmsName + ",FN=0,SN=" + sn + ",PN=" + pn + ",ONTID=" + ontId + ":{ctag}::;";
903: }
904: /*
905: else if (pon != null)
906: {
907: sn = pon.CardSlot;
908: pn = pon.Port;
909:
910: command = "LST-ONTSIPINFO::DEV=" + pon.PonGroup.Olt.EmsName + ",FN=0,SN=" + sn + ",PN=" + pn + ":{ctag}::;";
911: }
912: */
913: else
914: {
915: command = string.Empty;
916: }
917: }
918: else if (amsOpcode == EmsOpcode.LstVag)
919: {
920: if (did > 0)
921: {
922: command = "LST-VAG::DID=" + did + ",VAGID=0:{ctag}::;";
923: }
924: else
925: {
926: command = string.Empty;
927: }
928: }
929: else
930: {
931: command = string.Empty;
932: }
933:
934: var preparedCtaggedCommand = (string.IsNullOrEmpty(ctag)) ? PrepareCtaggedCommand(command) : PrepareCtaggedCommand(command, ctag);
935:
936: return preparedCtaggedCommand;
937: }
938:
939: ////////////////////////////////////////////////////////////////////////////
940:
941: /// <summary>
942: ///
943: /// </summary>
944: private static string FormatEmsLstVoipPstnUserCommand(EmsOpcode amsOpcode, string dev, int sn, int pn)
945: {
946: return FormatEmsLstVoipPstnUserCommand(amsOpcode, dev, sn, pn, string.Empty);
947: }
948:
949: ////////////////////////////////////////////////////////////////////////////
950:
951: /// <summary>
952: ///
953: /// </summary>
954: private static string FormatEmsLstVoipPstnUserCommand(EmsOpcode amsOpcode, string service)
955: {
956: return FormatEmsLstVoipPstnUserCommand(amsOpcode, string.Empty, -1, -1, service);
957: }
958:
959: ////////////////////////////////////////////////////////////////////////////
960:
961: /// <summary>
962: ///
963: /// </summary>
964: private static string FormatEmsLstVoipPstnUserCommand(EmsOpcode amsOpcode, string dev, int sn, int pn, string service)
965: {
966: string command;
967:
968: if (amsOpcode == EmsOpcode.LstVoipPstnUser)
969: {
970: if (!string.IsNullOrEmpty(service) && string.IsNullOrEmpty(dev))
971: {
972: // LST-VOIPPSTNUSER::DN=+96524805054:{ctag}::; // OK MSAN
973: // LST-VOIPPSTNUSER::DN=+96525650644:{ctag}::; // OK MDU No matching port
974: // LST-VOIPPSTNUSER::DN=96525650644:{ctag}::; // OK MDU (no + prefix)
975: // LST-VOIPPSTNUSER::DN=+96525442262:{ctag}::; // OK, NO matching port
976:
977: command = "LST-VOIPPSTNUSER::DN=" + service + ":{ctag}::;";
978: }
979: else
980: {
981: // sn = ont.CardSlot; you can not use ont.CardSlot for SN in Huawei MDUs
982: // LST-VOIPPSTNUSER::DEV=MDU-JBA-943-002,FN=0,SN=3,PN=10:{ctag}::;
983: // LST-VOIPPSTNUSER::DEV=ARD_MSAN_Cabinet 1_Frame 0,FN=0,SN=2,PN=0:{ctag}::;
984:
985: command = "LST-VOIPPSTNUSER::DEV=" + dev + ",FN=0,SN=" + sn + ",PN=" + pn + ":{ctag}::;";
986: }
987: }
988: else
989: {
990: command = string.Empty;
991: }
992:
993: return PrepareCtaggedCommand(command);
994: }
995:
996: ////////////////////////////////////////////////////////////////////////////
997:
998: /// <summary>
999: ///
1000: /// </summary>
1001: private static string FormatEmsDevLstCommand(EmsOpcode amsOpcode, string parameter)
1002: {
1003: int devTypeId;
1004: string command;
1005:
1006: if (amsOpcode == EmsOpcode.LstDevByDt)
1007: {
1008: devTypeId = Ia.Ftn.Cl.Models.Data.Huawei.Dev.DevTypeToDevTypeIdDictionary[parameter];
1009:
1010: if (devTypeId != 0)
1011: {
1012: command = "LST-DEV::DT=" + devTypeId + ":{ctag}::;";
1013: }
1014: else
1015: {
1016: command = string.Empty;
1017: }
1018: }
1019: else if (amsOpcode == EmsOpcode.LstDevByDev)
1020: {
1021: if (!string.IsNullOrEmpty(parameter))
1022: {
1023: command = "LST-DEV::DEV=" + parameter + ":{ctag}::;";
1024: }
1025: else
1026: {
1027: command = string.Empty;
1028: }
1029: }
1030: else if (amsOpcode == EmsOpcode.LstDevByDevIp)
1031: {
1032: if (!string.IsNullOrEmpty(parameter))
1033: {
1034: command = "LST-DEV::DEVIP=" + parameter + ":{ctag}::;";
1035: }
1036: else
1037: {
1038: command = string.Empty;
1039: }
1040: }
1041: else if (amsOpcode == EmsOpcode.SaveDev)
1042: {
1043: // after creating, modifing, or deleted a number in MDU we should save the configuration of device
1044: if (!string.IsNullOrEmpty(parameter))
1045: {
1046: command = "SAVE-DEV::DEV=" + parameter + ":{ctag}::;";
1047: }
1048: else
1049: {
1050: command = string.Empty;
1051: }
1052: }
1053: else
1054: {
1055: command = string.Empty;
1056: }
1057:
1058: return PrepareCtaggedCommand(command);
1059: }
1060:
1061: ////////////////////////////////////////////////////////////////////////////
1062:
1063: /// <summary>
1064: ///
1065: /// </summary>
1066: public static bool IsASaveDevCommand(string command)
1067: {
1068: bool b;
1069:
1070: if (!string.IsNullOrEmpty(command))
1071: {
1072: b = command.StartsWith("SAVE-DEV:");
1073: }
1074: else b = false;
1075:
1076: return b;
1077: }
1078:
1079: ////////////////////////////////////////////////////////////////////////////
1080:
1081: /// <summary>
1082: ///
1083: /// </summary>
1084: private static string FormatEmsBoardLstCommand(EmsOpcode amsOpcode, string dev)
1085: {
1086: int fn;
1087: string command;
1088:
1089: fn = 0;
1090:
1091: if (amsOpcode == EmsOpcode.LstBoard)
1092: {
1093: if (!string.IsNullOrWhiteSpace(dev))
1094: {
1095: command = "LST-BOARD::DEV=" + dev + ",FN=" + fn + ":{ctag}::SHOWOPTION=BNAME;";
1096: }
1097: else
1098: {
1099: command = string.Empty;
1100: }
1101: }
1102: else
1103: {
1104: command = string.Empty;
1105: }
1106:
1107: return PrepareCtaggedCommand(command);
1108: }
1109:
1110: ////////////////////////////////////////////////////////////////////////////
1111:
1112: /// <summary>
1113: ///
1114: /// </summary>
1115: private static string FormatEmsPortLstCommand(EmsOpcode amsOpcode, string dev, int fn, int sn)
1116: {
1117: string command;
1118:
1119: if (amsOpcode == EmsOpcode.LstPort)
1120: {
1121: if (!string.IsNullOrWhiteSpace(dev))
1122: {
1123: command = "LST-PORT::DEV=" + dev + ",FN=" + fn + ",SN=" + sn + ":{ctag}::;";
1124: }
1125: else
1126: {
1127: command = string.Empty;
1128: }
1129: }
1130: else
1131: {
1132: command = string.Empty;
1133: }
1134:
1135: return PrepareCtaggedCommand(command);
1136: }
1137:
1138: ////////////////////////////////////////////////////////////////////////////
1139:
1140: /// <summary>
1141: ///
1142: /// </summary>
1143: private static string FormatEmsModCommand(EmsOpcode amsOpcode, Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Ont ont)
1144: {
1145: int sn, pn, ontId;
1146: string command;
1147:
1148: if (ont != null)
1149: {
1150: if (amsOpcode == EmsOpcode.ModOntAlias)
1151: {
1152: // MOD-ONT::DEV=OLT-JHB-SAA-01,FN=0,SN=1,PN=1,ONTID=20:{ctag}::ALIAS=SAA.502.20;
1153: sn = ont.CardSlot;
1154: pn = ont.Port;
1155: ontId = ont.InternalNumber;
1156:
1157: command = "MOD-ONT::DEV=" + ont.Pon.PonGroup.Olt.EmsName + ",FN=0,SN=" + sn + ",PN=" + pn + ",ONTID=" + ontId + ":{ctag}::ALIAS=" + ont.Access.Name + ";";
1158: }
1159: else if (amsOpcode == EmsOpcode.ModOntAliasAnnul)
1160: {
1161: // MOD-ONT::DEV=OLT-JHB-SAA-01,FN=0,SN=1,PN=1,ONTID=20:{ctag}::ALIAS=;
1162: sn = ont.CardSlot;
1163: pn = ont.Port;
1164: ontId = ont.InternalNumber;
1165:
1166: command = "MOD-ONT::DEV=" + ont.Pon.PonGroup.Olt.EmsName + ",FN=0,SN=" + sn + ",PN=" + pn + ",ONTID=" + ontId + ":{ctag}::ALIAS=;";
1167: }
1168: else if (amsOpcode == EmsOpcode.ModOntVaprofileAluSipB)
1169: {
1170: // MOD-ONT::DEV=OLT-ALU,FN=0,SN=1,PN=0,ONTID=2:{ctag}::VAPROFILE=ALU-SIP-B-MS;
1171: sn = ont.CardSlot;
1172: pn = ont.Port;
1173: ontId = ont.InternalNumber;
1174:
1175: command = "MOD-ONT::DEV=" + ont.Pon.PonGroup.Olt.EmsName + ",FN=0,SN=" + sn + ",PN=" + pn + ",ONTID=" + ontId + ":{ctag}::VAPROFILE=ALU-SIP-B-MS;";
1176: }
1177: else
1178: {
1179: command = string.Empty;
1180: }
1181: }
1182: else
1183: {
1184: command = string.Empty;
1185: }
1186:
1187: return PrepareCtaggedCommand(command);
1188: }
1189:
1190: ////////////////////////////////////////////////////////////////////////////
1191:
1192: /// <summary>
1193: ///
1194: /// </summary>
1195: private static string FormatEmsCfgOntVainDivCommand(EmsOpcode amsOpcode, Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Ont ont, string service, int telPort)
1196: {
1197: string command, aid, impiOrPrividUser, sipSubscriberRegistrationPassword, emsEmpty;
1198:
1199: /*
1200: CFG-ONTVAINDIV::DEV=OLT_01,FN=0,SN=1,PN=0,ONTID=2,SIPUSERNAME_2=+96524674071,SIPUSERPWD_2=admin,SIPNAME_2=+96524674071@ims.moc.kw:{ctag}::;
1201:
1202: 7340032 2017-12-20 17:26:33
1203: M {ctag} COMPLD
1204: EN=0 ENDESC=Succeeded.
1205: ;
1206: CFG-ONTVAINDIV::DEV=OLT-QRN-FUN-01,FN=0,SN=1,PN=1,ONTID=20,SIPUSERNAME_2=+96524674071,SIPUSERPWD_2=admin,SIPNAME_2=+96524674071@ims.moc.kw:{ctag}::;
1207: CFG-ONTVAINDIV::DEV=OLT-QRN-FUN-01,FN=0,SN=1,PN=1,ONTID=20,SIPUSERNAME_2=a2,SIPUSERPWD_2=admin,SIPNAME_2=a2@ims.moc.kw:{ctag}::;
1208: CFG-ONTVAINDIV::DEV=OLT-QRN-FUN-01,FN=0,SN=1,PN=1,ONTID=20,SIPUSERNAME_3=a3,SIPUSERPWD_3=admin,SIPNAME_3=a2@ims.moc.kw:{ctag}::;
1209: CFG-ONTVAINDIV::DEV=OLT-QRN-FUN-01,FN=0,SN=1,PN=1,ONTID=20,SIPUSERNAME_4=a4,SIPUSERPWD_4=admin,SIPNAME_4=a2@ims.moc.kw:{ctag}::;
1210:
1211: CFG-ONTVAINDIV::DEV=OLT-JHB-JBA-01,FN=0,SN=1,PN=0,ONTID=2,SIPUSERNAME_1=--,SIPUSERPWD_1=--,SIPNAME_1=--:{ctag}::;
1212: CFG-ONTVAINDIV::DEV=OLT-JHB-JBA-01,FN=0,SN=1,PN=0,ONTID=2,SIPUSERNAME_2=--,SIPUSERPWD_2=--,SIPNAME_2=--:{ctag}::;
1213: CFG-ONTVAINDIV::DEV=OLT-JHB-JBA-01,FN=0,SN=1,PN=0,ONTID=2,SIPUSERNAME_3=--,SIPUSERPWD_3=--,SIPNAME_3=--:{ctag}::;
1214: CFG-ONTVAINDIV::DEV=OLT-JHB-JBA-01,FN=0,SN=1,PN=0,ONTID=2,SIPUSERNAME_4=--,SIPUSERPWD_4=--,SIPNAME_4=--:{ctag}::;
1215: */
1216:
1217: aid = Ia.Ftn.Cl.Models.Business.NumberFormatConverter.ImpuAid(service); //"+965" + service
1218:
1219: // send priv_96525212254 for Nokia switch and +96524602283@ims.moc.kw for Huawei switch
1220: if (ont.Pon.PonGroup.Olt.Odf.Router.Vendor == Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Vendor.Huawei)
1221: {
1222: impiOrPrividUser = Ia.Ftn.Cl.Models.Business.NumberFormatConverter.Impi(service);
1223: sipSubscriberRegistrationPassword = Ia.Ftn.Cl.Models.Business.Huawei.Ims.SipSubscriberRegistrationPassword;
1224: }
1225: else //if(ont.Pon.PonGroup.Olt.Odf.Router.Vendor == Ia.Ftn.Cl.Model.Business.NetworkDesignDocument.Vendor.Nokia)
1226: {
1227: impiOrPrividUser = Ia.Ftn.Cl.Models.Business.NumberFormatConverter.PrividUser(service);
1228: sipSubscriberRegistrationPassword = Ia.Ftn.Cl.Models.Business.Nokia.Ims.SipSubscriberRegistrationPassword;
1229: }
1230:
1231: if (ont != null)
1232: {
1233: if (amsOpcode == EmsOpcode.CfgOntVainDiv)
1234: {
1235: command = @"CFG-ONTVAINDIV::DEV=" + ont.Pon.PonGroup.Olt.EmsName + ",FN=" + ont.Rack + ",SN=" + ont.CardSlot + ",PN=" + ont.Port + ",ONTID=" + ont.InternalNumber + ",SIPUSERNAME_" + telPort + "=" + aid + ",SIPUSERPWD_" + telPort + "=" + sipSubscriberRegistrationPassword + ",SIPNAME_" + telPort + "=" + impiOrPrividUser + ":{ctag}::;";
1236: }
1237: else if (amsOpcode == EmsOpcode.CfgOntVainDivVacant)
1238: {
1239: emsEmpty = "--"; // this means vacant
1240: // also SIPUSERPWD_n is "--"
1241: command = @"CFG-ONTVAINDIV::DEV=" + ont.Pon.PonGroup.Olt.EmsName + ",FN=" + ont.Rack + ",SN=" + ont.CardSlot + ",PN=" + ont.Port + ",ONTID=" + ont.InternalNumber + ",SIPUSERNAME_" + telPort + "=" + emsEmpty + ",SIPUSERPWD_" + telPort + "=" + emsEmpty + ",SIPNAME_" + telPort + "=" + emsEmpty + ":{ctag}::;";
1242: }
1243: else
1244: {
1245: command = string.Empty;
1246: }
1247: }
1248: else
1249: {
1250: command = string.Empty;
1251: }
1252:
1253: return PrepareCtaggedCommand(command);
1254: }
1255:
1256: ////////////////////////////////////////////////////////////////////////////
1257:
1258: /// <summary>
1259: ///
1260: /// </summary>
1261: private static string FormatEmsCfgVoipPstnAccountCommand(EmsOpcode amsOpcode, string dev, Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Vendor vendor, int fn, string service, int sn, int pn)
1262: {
1263: string command, aid, impiOrPrividUser, sipSubscriberRegistrationPassword, emsEmpty;
1264:
1265: /*
1266: CFG-VOIPPSTNACCOUNT::DEV= MDU-JBA-943-002,FN=0,SN=3,PN=10:{ctag}::BINDINDEX=0,UserName=priv_96524602285,Password=1234;
1267: CFG-VOIPPSTNACCOUNT::DEV= MDU-JBA-943-002,FN=0,SN=3,PN=10:{ctag}::BINDINDEX=0,UserName=--,Password=--;
1268: */
1269:
1270: if (amsOpcode == EmsOpcode.CfgVoipPstnAccount)
1271: {
1272: aid = Ia.Ftn.Cl.Models.Business.NumberFormatConverter.ImpuAid(service); //"+965" + service for reference only
1273:
1274: // send priv_96525212254 for Nokia switch and +96524602283@ims.moc.kw for Huawei switch
1275: if (vendor == Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Vendor.Huawei)
1276: {
1277: impiOrPrividUser = Ia.Ftn.Cl.Models.Business.NumberFormatConverter.Impi(service);
1278: sipSubscriberRegistrationPassword = Ia.Ftn.Cl.Models.Business.Huawei.Ims.SipSubscriberRegistrationPassword;
1279: }
1280: else if (vendor == Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Vendor.Nokia)
1281: {
1282: impiOrPrividUser = Ia.Ftn.Cl.Models.Business.NumberFormatConverter.PrividUser(service);
1283: sipSubscriberRegistrationPassword = Ia.Ftn.Cl.Models.Business.Nokia.Ims.SipSubscriberRegistrationPassword;
1284: }
1285: else
1286: {
1287: throw new ArgumentOutOfRangeException("amsOpcode undefined");
1288: }
1289:
1290: // CFG-VOIPPSTNACCOUNT::DEV= MDU-JBA-943-002,FN=0,SN=3,PN=10:{ctag}::BINDINDEX=0,UserName= priv_96524602285,Password=1234;
1291: command = @"CFG-VOIPPSTNACCOUNT::DEV=" + dev + ",FN=" + fn + ",SN=" + sn + ",PN=" + pn + ":{ctag}::BINDINDEX=0,UserName=" + impiOrPrividUser + ",Password=" + sipSubscriberRegistrationPassword + ";";
1292: }
1293: else if (amsOpcode == EmsOpcode.CfgVoipPstnAccountVacant)
1294: {
1295: emsEmpty = "--"; // this means vacant
1296: // also UserName is "--"
1297: command = @"CFG-VOIPPSTNACCOUNT::DEV=" + dev + ",FN=" + fn + ",SN=" + sn + ",PN=" + pn + ":{ctag}::BINDINDEX=0,UserName=" + emsEmpty + ",Password=" + emsEmpty + ";";
1298: }
1299: else command = string.Empty;
1300:
1301: return PrepareCtaggedCommand(command);
1302: }
1303:
1304: ////////////////////////////////////////////////////////////////////////////
1305:
1306: /// <summary>
1307: ///
1308: /// </summary>
1309: private static string FormatEmsVoipPstnUserCommand(EmsOpcode amsOpcode, string dev, int fn, int sn, int pn, string service)
1310: {
1311: string command;
1312:
1313: /*
1314: Add new SIP number on MDU:
1315: ADD-VOIPPSTNUSER::DEV=MDU-JBA-943-002,FN=0,SN=3,PN=10:{ctag}::MGID=0,DN=96524602285;
1316:
1317: Delete SIP number from MDU:
1318: DEL-VOIPPSTNUSER::DEV=MDU-JBA-943-002,FN=0,SN=3,PN=10:7::;
1319: */
1320:
1321: if (amsOpcode == EmsOpcode.AddVoipPstnUser)
1322: {
1323: var serviceWithCountryCode = Ia.Ftn.Cl.Models.Business.NumberFormatConverter.ServiceWithCountryCode(service);
1324:
1325: // ADD-VOIPPSTNUSER::DEV=MDU-MA5616-TEST-S,FN=0,SN=4,PN=1:{ctag}::MGID=0,DN=96524674072;
1326: // ADD-VOIPPSTNUSER::DEV=MDU-JBA-943-002,FN=0,SN=3,PN=10:{ctag}::MGID=0,DN=96524602285;
1327: command = @"ADD-VOIPPSTNUSER::DEV=" + dev + ",FN=" + fn + ",SN=" + sn + ",PN=" + pn + ":{ctag}::MGID=0,DN=" + serviceWithCountryCode + ";";
1328: }
1329: else if (amsOpcode == EmsOpcode.AddMsanVoipPstnUser)
1330: {
1331: var dn = Ia.Ftn.Cl.Models.Business.NumberFormatConverter.Aid(service);
1332:
1333: // ADD-VOIPPSTNUSER::DEV=JHR_MSAN_Cabinet 0_Frame 0,FN=0,SN=3,PN=10:{ctag}::MGID=0,DN=+96524602285;
1334: command = @"ADD-VOIPPSTNUSER::DEV=" + dev + ",FN=" + fn + ",SN=" + sn + ",PN=" + pn + ":{ctag}::MGID=0,DN=" + dn + ";";
1335: }
1336: else if (amsOpcode == EmsOpcode.DelVoipPstnUser)
1337: {
1338: // DEL-VOIPPSTNUSER::DEV=MDU-MA5616-TEST-S,FN=0,SN=4,PN=1:7::;
1339: // PN IS TELPORT for MDU
1340: command = @"DEL-VOIPPSTNUSER::DEV=" + dev + ",FN=" + fn + ",SN=" + sn + ",PN=" + pn + ":{ctag}::;";
1341: }
1342: else
1343: {
1344: command = string.Empty;
1345: }
1346:
1347: return PrepareCtaggedCommand(command);
1348: }
1349:
1350: ////////////////////////////////////////////////////////////////////////////
1351:
1352: /// <summary>
1353: ///
1354: /// </summary>
1355: private static string FormatEmsResetCommand(EmsOpcode amsOpcode, Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Ont ont)
1356: {
1357: string command;
1358:
1359: /*
1360: * Reset ONT
1361: * RESET-ONT::DEV=OLT-KHP-KHP-A3-01,FN=0,SN=4,PN=1,ONTID=14:{ctag}::;
1362: */
1363:
1364: if (ont != null)
1365: {
1366: if (amsOpcode == EmsOpcode.ResetOnt)
1367: {
1368: var sn = ont.CardSlot;
1369: var pn = ont.Port;
1370: var ontId = ont.InternalNumber;
1371:
1372: command = "RESET-ONT::DEV=" + ont.Pon.PonGroup.Olt.EmsName + ",FN=0,SN=" + sn + ",PN=" + pn + ",ONTID=" + ontId + ":{ctag}::;";
1373: }
1374: else
1375: {
1376: command = string.Empty;
1377: }
1378: }
1379: else
1380: {
1381: command = string.Empty;
1382: }
1383:
1384: return PrepareCtaggedCommand(command);
1385: }
1386:
1387: ////////////////////////////////////////////////////////////////////////////
1388:
1389: /// <summary>
1390: /// Return a bool indicator as to weather the command is a CFG "slow" command
1391: /// </summary>
1392: public static bool IsACfgCommand(string command)
1393: {
1394: bool b;
1395: string s;
1396:
1397: if (!string.IsNullOrEmpty(command))
1398: {
1399: s = command.ToLower();
1400: b = s.Contains("cfg-ontvaindiv") || s.Contains("cfg-voippstnaccount");
1401: }
1402: else b = false;
1403:
1404: return b;
1405: }
1406:
1407: ////////////////////////////////////////////////////////////////////////////
1408:
1409: /// <summary>
1410: ///
1411: /// </summary>
1412: private static void EmsNameAndCardPortOntSquenceFromOntPosition(string ontPosition, out string amsName, out string pon)
1413: {
1414: Match match;
1415:
1416: if (!string.IsNullOrEmpty(ontPosition))
1417: {
1418: // SUR-1-1-1-1-1;
1419: match = Regex.Match(ontPosition, @"([a-zA-Z]{3}\-\d{1,2}\-\d{1,2})\-(\d{1,2}\-\d{1,2}\-\d{1,2})");
1420:
1421: amsName = match.Groups[1].Value;
1422: pon = match.Groups[2].Value;
1423: }
1424: else
1425: {
1426: amsName = string.Empty;
1427: pon = string.Empty;
1428: }
1429: }
1430:
1431: ////////////////////////////////////////////////////////////////////////////
1432:
1433: /// <summary>
1434: ///
1435: /// </summary>
1436: public static List<string> EmsCommandsToRetrieveSfuOntAndOntSipInfoOrMduOntAndVoipPstnUserAndVagAndBoardForSingleOntsWithDefinedFamilyTypeOrDefinedMduDevAndForItIfThisSingleOntDefinedInNddDocumentList(string accessName)
1437: {
1438: List<string> list;
1439:
1440: list = EmsCommandsToRetrieveSfuOntAndOntSipInfoOrMduOntAndVoipPstnUserAndVagAndBoardForSingleOntsWithDefinedFamilyTypeOrDefinedMduDevList(accessName);
1441:
1442: if (list.Count == 0) list = EmsCommandToRetrieveSingleOntDefinedInNddDocumentList(accessName);
1443:
1444: return list;
1445: }
1446:
1447: ////////////////////////////////////////////////////////////////////////////
1448:
1449: /// <summary>
1450: ///
1451: /// </summary>
1452: public static List<string> EmsCommandsToRetrieveVoipPstnUser(string service)
1453: {
1454: var list = EmsCommandsToRetrieveVoipPstnUserForMduAndMsan(service);
1455:
1456: return list;
1457: }
1458:
1459: ////////////////////////////////////////////////////////////////////////////
1460:
1461: /// <summary>
1462: ///
1463: /// </summary>
1464: private static List<string> EmsCommandsToRetrieveVoipPstnUserForMduAndMsan(string service)
1465: {
1466: List<string> list;
1467:
1468: list = new List<string>();
1469:
1470: if (!string.IsNullOrEmpty(service))
1471: {
1472: // for MDUs numbers will look like 96524805054
1473: // for MSAN numbers will look like +96524805054
1474:
1475: var serviceWithCountryCode = Ia.Ftn.Cl.Models.Business.NumberFormatConverter.ServiceWithCountryCode(service);
1476: var impuAid = Ia.Ftn.Cl.Models.Business.NumberFormatConverter.ImpuAid(service);
1477:
1478: list.Add(FormatEmsLstVoipPstnUserCommand(EmsOpcode.LstVoipPstnUser, serviceWithCountryCode));
1479: list.Add(FormatEmsLstVoipPstnUserCommand(EmsOpcode.LstVoipPstnUser, impuAid));
1480: }
1481:
1482: return list;
1483: }
1484:
1485: ////////////////////////////////////////////////////////////////////////////
1486:
1487: /// <summary>
1488: ///
1489: /// </summary>
1490: public static List<string> EmsCommandsToRetrieveOntAndOntSipInfoWithDefinedFamilyType_EmsCommandsToRetrieveOntForOntsDefinedInNddDocument_EmsCommandsToUpdateAndRetrieveOntAliasWithItsAccessNameList(Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Olt olt)
1491: {
1492: HashSet<string> hashSet1, hashSet2, hashSet3, hashSet;
1493:
1494: //hashSet1 = new HashSet<string>(EmsCommandsToRetrieveOntForOntsDefinedInNddDocumentList(olt)); takes too long
1495: hashSet1 = new HashSet<string>(EmsCommandsToRetrieveOntForOntsWithAccessList(olt));
1496:
1497: hashSet2 = new HashSet<string>(EmsCommandsToRetrieveOntAndOntSipInfoWithDefinedFamilyTypeList(olt));
1498:
1499: hashSet3 = new HashSet<string>(); // EmsCommandsToUpdateAndRetrieveOntAliasWithItsAccessNameList(olt);
1500:
1501: hashSet = new HashSet<string>(hashSet1);
1502: hashSet.UnionWith(hashSet2);
1503: hashSet.UnionWith(hashSet3);
1504:
1505: return hashSet.Shuffle().ToList();
1506: }
1507:
1508: ////////////////////////////////////////////////////////////////////////////
1509:
1510: /// <summary>
1511: ///
1512: /// </summary>
1513: public static List<string> EmsCommandsToUpdateAndRetrieveOntAliasWithItsAccessNameList(Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Olt olt)
1514: {
1515: string accessName, ontId, ontAlias;
1516: List<string> list;
1517: Dictionary<string, string> ontAccessIdToOntAccessNameDictionary;
1518: Hashtable ontIdWithNullAccessHashtable;
1519: //Ia.Ftn.Cl.Model.Business.Nokia.Ont.FamilyType familyType;
1520: Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Ont nddOnt;
1521: //List<Ia.Ftn.Cl.Model.Ont> ontList;
1522: Dictionary<string, string> ontIdToAliasForNonNullAccessDictionary;
1523: Dictionary<string, Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Ont> ontIdToOntDictionary;
1524: list = null;
1525:
1526: ontAccessIdToOntAccessNameDictionary = Ia.Ftn.Cl.Models.Data.NetworkDesignDocument.OntAccessIdToOntAccessNameDictionary;
1527:
1528: ontIdToAliasForNonNullAccessDictionary = Ia.Ftn.Cl.Models.Data.Huawei.Ont.IdToAliasForNonNullAccessDictionary;
1529:
1530: ontIdWithNullAccessHashtable = Ia.Ftn.Cl.Models.Data.Huawei.Ont.IdWithNullAccessHashtable;
1531:
1532: ontIdToOntDictionary = Ia.Ftn.Cl.Models.Data.NetworkDesignDocument.OntIdToOntDictionary;
1533:
1534: using (var db = new Ia.Ftn.Cl.Db())
1535: {
1536: list = new List<string>();
1537:
1538: //ontList = (from o in db.Onts where o.Access != null select o).ToList();
1539:
1540: // insert descriptions for missing entries
1541: if (ontIdToAliasForNonNullAccessDictionary.Count > 0)
1542: {
1543: foreach (KeyValuePair<string, string> kvp in ontIdToAliasForNonNullAccessDictionary) //Ia.Ftn.Cl.Model.Ont ont in ontList)
1544: {
1545: ontId = kvp.Key;
1546: ontAlias = kvp.Value;
1547:
1548: if (ontAccessIdToOntAccessNameDictionary.ContainsKey(ontId))
1549: {
1550: accessName = ontAccessIdToOntAccessNameDictionary[ontId];
1551:
1552: if (ontAlias != accessName)
1553: {
1554: // below: too slow needs to be changed
1555: nddOnt = Ia.Ftn.Cl.Models.Data.NetworkDesignDocument.OntById(ontId);
1556:
1557: if (nddOnt.Pon.PonGroup.Olt.Id == olt.Id)
1558: {
1559: //familyType = (Ia.Ftn.Cl.Model.Business.Nokia.Ont.FamilyType)ont.FamilyTypeId;
1560:
1561: list.Add(Ia.Ftn.Cl.Models.Business.Huawei.Ems.FormatEmsModCommand(EmsOpcode.ModOntAlias, nddOnt));
1562: }
1563: }
1564: else
1565: {
1566: }
1567: }
1568: }
1569: }
1570:
1571: // delete descriptions ONTs with missing access info
1572: if (ontIdWithNullAccessHashtable.Count > 0)
1573: {
1574: foreach (string _ontId in ontIdWithNullAccessHashtable.Keys)
1575: {
1576: if (ontIdToOntDictionary.ContainsKey(_ontId))
1577: {
1578: nddOnt = ontIdToOntDictionary[_ontId];
1579:
1580: if (nddOnt.Pon.PonGroup.Olt.Id == olt.Id)
1581: {
1582: list.Add(Ia.Ftn.Cl.Models.Business.Huawei.Ems.FormatEmsModCommand(EmsOpcode.ModOntAliasAnnul, nddOnt));
1583: }
1584: }
1585: }
1586: }
1587: }
1588:
1589: return list.ToList();
1590: }
1591:
1592: ////////////////////////////////////////////////////////////////////////////
1593:
1594: /// <summary>
1595: ///
1596: /// </summary>
1597: private static List<string> EmsCommandToRetrieveSingleOntDefinedInNddDocumentList(string accessName)
1598: {
1599: List<string> list;
1600: Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Ont nddOnt;
1601:
1602: list = new List<string>();
1603:
1604: if (!string.IsNullOrEmpty(accessName))
1605: {
1606: nddOnt = Ia.Ftn.Cl.Models.Data.NetworkDesignDocument.OntByAccessName(accessName);
1607:
1608: if (nddOnt != null)
1609: {
1610: list.Add(FormatEmsLstCommand(EmsOpcode.LstOnt, nddOnt));
1611: }
1612: }
1613:
1614: return list;
1615: }
1616:
1617: ////////////////////////////////////////////////////////////////////////////
1618:
1619: /// <summary>
1620: ///
1621: /// </summary>
1622: private static List<string> EmsCommandsToRetrieveOntForOntsDefinedInNddDocumentList(Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Olt olt)
1623: {
1624: List<string> list;
1625:
1626: list = new List<string>();
1627:
1628: if (olt != null)
1629: {
1630: foreach (Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.PonGroup ponGroup in olt.PonGroupList)
1631: {
1632: foreach (Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Pon pon in ponGroup.PonList)
1633: {
1634: foreach (Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Ont ont in pon.OntList)
1635: {
1636: list.Add(FormatEmsLstCommand(EmsOpcode.LstOnt, ont));
1637: }
1638: }
1639: }
1640: }
1641:
1642: return list;
1643: }
1644:
1645: ////////////////////////////////////////////////////////////////////////////
1646:
1647: /// <summary>
1648: ///
1649: /// </summary>
1650: private static List<string> EmsCommandsToRetrieveOntForOntsWithAccessList(Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Olt olt)
1651: {
1652: List<string> list;
1653: List<Ia.Ftn.Cl.Models.Access> accessList;
1654:
1655: list = new List<string>();
1656:
1657: if (olt != null)
1658: {
1659: accessList = Ia.Ftn.Cl.Models.Data.Access.List(olt);
1660:
1661: var ontAccessIdToOntDictionary = Ia.Ftn.Cl.Models.Data.NetworkDesignDocument.OntAccessIdToOntDictionary;
1662:
1663: foreach (var access in accessList)
1664: {
1665: list.Add(FormatEmsLstCommand(EmsOpcode.LstOnt, ontAccessIdToOntDictionary[access.Id]));
1666:
1667: list.Add(FormatEmsLstCommand(EmsOpcode.LstOntSipInfo, ontAccessIdToOntDictionary[access.Id]));
1668: }
1669: }
1670:
1671: return list;
1672: }
1673:
1674: ////////////////////////////////////////////////////////////////////////////
1675:
1676: /// <summary>
1677: ///
1678: /// </summary>
1679: private static List<string> EmsCommandsToRetrieveSfuOntAndOntSipInfoOrMduOntAndVoipPstnUserAndVagAndBoardForSingleOntsWithDefinedFamilyTypeOrDefinedMduDevList(string accessName)
1680: {
1681: Ia.Ftn.Cl.Models.Business.Huawei.Dev.MduDev mduDev;
1682: Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Ont nddOnt;
1683: Ia.Ftn.Cl.Models.Huawei.EmsOnt ont;
1684: List<string> list, possibleMduNameList;
1685:
1686: list = new List<string>();
1687:
1688: if (!string.IsNullOrEmpty(accessName))
1689: {
1690: nddOnt = Ia.Ftn.Cl.Models.Data.NetworkDesignDocument.OntByAccessName(accessName);
1691:
1692: if (nddOnt != null)
1693: {
1694: var accessNameToMduDevDictionary = Ia.Ftn.Cl.Models.Data.Huawei.Default.AccessNameToMduDevDictionary;
1695:
1696: if (accessNameToMduDevDictionary.ContainsKey(nddOnt.Access.Name))
1697: {
1698: mduDev = accessNameToMduDevDictionary[nddOnt.Access.Name];
1699:
1700: list.Add(FormatEmsDevLstCommand(EmsOpcode.LstDevByDev, mduDev.Dev));
1701:
1702: list.Add(FormatEmsBoardLstCommand(EmsOpcode.LstBoard, mduDev.Dev));
1703:
1704: list.Add(FormatEmsLstCommand(EmsOpcode.LstOnt, nddOnt));
1705:
1706: list.Add(FormatEmsLstCommand(EmsOpcode.LstVag, mduDev.Did));
1707:
1708: foreach (var fsSnPn in mduDev.PossibleFnSnPnPortList)
1709: {
1710: list.Add(FormatEmsLstVoipPstnUserCommand(EmsOpcode.LstVoipPstnUser, mduDev.Dev, fsSnPn.Sn, fsSnPn.Pn));
1711: }
1712: }
1713: else
1714: {
1715: ont = Ia.Ftn.Cl.Models.Data.Huawei.Ont.Read(nddOnt.Id);
1716:
1717: if (ont != null)
1718: {
1719: if (ont.FamilyType == Ia.Ftn.Cl.Models.Business.Huawei.Ont.FamilyType.Mdu)
1720: {
1721: possibleMduNameList = Ia.Ftn.Cl.Models.Business.Huawei.Ems.ConstructPossibleMduNameListFromNddOntAccessName(nddOnt);
1722:
1723: foreach (string s in possibleMduNameList)
1724: {
1725: list.Add(FormatEmsDevLstCommand(EmsOpcode.LstDevByDev, s));
1726:
1727: //list.Add(FormatEmsLstCommand(EmsOpcode.LstVag, mduDev.Did));
1728:
1729: list.Add(FormatEmsBoardLstCommand(EmsOpcode.LstBoard, s));
1730: }
1731:
1732: list.Add(FormatEmsDevLstCommand(EmsOpcode.LstDevByDevIp, ont.IP));
1733: // see EmsOnt with Name = 10.133.57.6, and select * from EmsOnts where EQUIPMENTID = '5878'
1734: }
1735: else
1736: {
1737: list.Add(FormatEmsLstCommand(EmsOpcode.LstOnt, nddOnt));
1738:
1739: list.Add(FormatEmsLstCommand(EmsOpcode.LstOntSipInfo, nddOnt));
1740: }
1741: }
1742: }
1743: }
1744: }
1745:
1746: return list;
1747: }
1748:
1749: ////////////////////////////////////////////////////////////////////////////
1750:
1751: /// <summary>
1752: ///
1753: /// </summary>
1754: private static List<string> EmsCommandsToRetrieveOntAndOntSipInfoWithDefinedFamilyTypeList(Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Olt olt)
1755: {
1756: int did;
1757: Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Ont nddOnt;
1758: List<string> list;
1759: List<Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Ont> nddOntList;
1760: List<Ia.Ftn.Cl.Models.Huawei.EmsOnt> ontList;
1761:
1762: list = new List<string>();
1763:
1764: if (olt != null)
1765: {
1766: did = olt.Did;
1767:
1768: if (did != 0)
1769: {
1770: ontList = Ia.Ftn.Cl.Models.Data.Huawei.Ont.ListByDid(did);
1771: nddOntList = (from o in Ia.Ftn.Cl.Models.Data.NetworkDesignDocument.OntList where o.Pon.PonGroup.Olt == olt select o).ToList();
1772:
1773: if (ontList != null && ontList.Count > 0 && nddOntList != null && nddOntList.Count > 0)
1774: {
1775: list = new List<string>(ontList.Count);
1776:
1777: foreach (var ont in ontList)
1778: {
1779: if (ont.Access != null)
1780: {
1781: nddOnt = (from o in nddOntList where o.Id == ont.Id select o).SingleOrDefault();
1782:
1783: if (nddOnt != null)
1784: {
1785: list.Add(FormatEmsLstCommand(EmsOpcode.LstOnt, nddOnt));
1786:
1787: list.Add(FormatEmsLstCommand(EmsOpcode.LstOntSipInfo, nddOnt));
1788: }
1789: else
1790: {
1791:
1792: }
1793: }
1794: }
1795: }
1796: else
1797: {
1798:
1799: }
1800: }
1801: else
1802: {
1803:
1804: }
1805: }
1806: else
1807: {
1808:
1809: }
1810:
1811: return list;
1812: }
1813:
1814: ////////////////////////////////////////////////////////////////////////////
1815:
1816: /// <summary>
1817: ///
1818: /// </summary>
1819: public static List<Ia.Ftn.Cl.Models.Business.Huawei.Default.FnSnPnPort> PossibleFnSnPnForMduDevList(Ia.Ftn.Cl.Models.Business.Huawei.Dev.MduDev mdu)
1820: {
1821: int count, port;
1822: List<Ia.Ftn.Cl.Models.Business.Huawei.Default.FnSnPnPort> list;
1823:
1824: list = new List<Ia.Ftn.Cl.Models.Business.Huawei.Default.FnSnPnPort>();
1825:
1826: if (mdu != null)
1827: {
1828: port = 1;
1829:
1830: /* 1 is the port starting point according to service request service position
1831: *
1832: * All Nokia ONTs (SFUs and MDUs) start at port position 1
1833: * Huawei ONTs (SFUs) start at port position 1, while Huawei MDUs start at port position 0
1834: * All positions in the Customer Department database will start at position 1 (e.g. port 3 in a Huawei MDU is 4 in the Customer Department database)
1835: */
1836:
1837: foreach (var mduDevBoard in mdu.MduDevBoardList)
1838: {
1839: count = mduDevBoard.TelPortCount;
1840:
1841: for (int pn = 0; pn < count; pn++)
1842: {
1843: list.Add(new Ia.Ftn.Cl.Models.Business.Huawei.Default.FnSnPnPort(mduDevBoard.Fn, mduDevBoard.Sn, pn, port++));
1844: }
1845: }
1846: }
1847:
1848: return list;
1849: }
1850:
1851: ////////////////////////////////////////////////////////////////////////////
1852:
1853: /// <summary>
1854: ///
1855: /// </summary>
1856: public static Ia.Ftn.Cl.Models.Business.Huawei.Default.FnSnPnPort FirstFnSnPnForMduDevList(Ia.Ftn.Cl.Models.Business.Huawei.Dev.MduDev mdu)
1857: {
1858: return Ia.Ftn.Cl.Models.Business.Huawei.Ems.PossibleFnSnPnForMduDevList(mdu).First();
1859: }
1860:
1861: ////////////////////////////////////////////////////////////////////////////
1862: ////////////////////////////////////////////////////////////////////////////
1863:
1864: /// <summary>
1865: ///
1866: /// </summary>
1867: public static List<Ia.Ftn.Cl.Models.Business.Huawei.Default.FnSnPnPort> PossibleFnSnPnForMsanDevList()
1868: {
1869: var list = new List<Ia.Ftn.Cl.Models.Business.Huawei.Default.FnSnPnPort>();
1870:
1871: foreach (var fn in Ia.Ftn.Cl.Models.Business.Huawei.Ems.PossibleFnForMsanDevList)
1872: {
1873: foreach (var sn in Ia.Ftn.Cl.Models.Business.Huawei.Ems.PossibleSnForMsanDevList)
1874: {
1875: foreach (var pn in Ia.Ftn.Cl.Models.Business.Huawei.Ems.PossiblePnForMsanDevList)
1876: {
1877: list.Add(new Ia.Ftn.Cl.Models.Business.Huawei.Default.FnSnPnPort(fn, sn, pn, Ia.Ftn.Cl.Models.Business.Default.PortUndefinedOrInvalidOrUnknown));
1878: }
1879: }
1880: }
1881:
1882: return list;
1883: }
1884:
1885: ////////////////////////////////////////////////////////////////////////////
1886:
1887: /// <summary>
1888: ///
1889: /// </summary>
1890: public static Ia.Ftn.Cl.Models.Business.Huawei.Default.FnSnPnPort FirstFnSnPnForMsanDevList()
1891: {
1892: return Ia.Ftn.Cl.Models.Business.Huawei.Ems.PossibleFnSnPnForMsanDevList().First();
1893: }
1894:
1895: ////////////////////////////////////////////////////////////////////////////
1896:
1897: /// <summary>
1898: ///
1899: /// </summary>
1900: public static List<int> PossibleFnForMsanDevList
1901: {
1902: get
1903: {
1904: return new List<int>() { 0 };
1905: }
1906: }
1907:
1908: ////////////////////////////////////////////////////////////////////////////
1909:
1910: /// <summary>
1911: ///
1912: /// </summary>
1913: public static List<int> PossibleSnForMsanDevList
1914: {
1915: get
1916: {
1917: // these are there EmsDev.BT is PSTN
1918: return new List<int>() { 1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 13, 14, 15, 16, 17, 18 };
1919: }
1920: }
1921:
1922: ////////////////////////////////////////////////////////////////////////////
1923:
1924: /// <summary>
1925: ///
1926: /// </summary>
1927: public static List<int> PossiblePnForMsanDevList
1928: {
1929: get
1930: {
1931: var list = new List<int>();
1932:
1933: for (int pn = 0; pn <= 63; pn++) list.Add(pn);
1934:
1935: return list;
1936: }
1937: }
1938:
1939: ////////////////////////////////////////////////////////////////////////////
1940: ////////////////////////////////////////////////////////////////////////////
1941:
1942: /*
1943: ////////////////////////////////////////////////////////////////////////////
1944:
1945: /// <summary>
1946: /// Return the ONT family type from the software version
1947: /// </summary>
1948: public static Ia.Ftn.Cl.Model.Business.Huawei.Ont.FamilyType FamilyType(string activeSoftware, string plannedSoftware)
1949: {
1950: Ia.Ftn.Cl.Model.Business.Huawei.Ont.FamilyType familyType;
1951:
1952: if (activeSoftware != null)
1953: {
1954: if (activeSoftware == plannedSoftware)
1955: {
1956: if (activeSoftware.Contains("3FE508")) familyType = Ia.Ftn.Cl.Model.Business.Huawei.Ont.FamilyType.Sfu;
1957: else if (activeSoftware.Contains("3FE511")) familyType = Ia.Ftn.Cl.Model.Business.Huawei.Ont.FamilyType.Soho;
1958: else if (activeSoftware.Contains("3FE514")) familyType = Ia.Ftn.Cl.Model.Business.Huawei.Ont.FamilyType.Mdu;
1959: else familyType = Ia.Ftn.Cl.Model.Business.Huawei.Ont.FamilyType.Undefined;
1960: }
1961: else familyType = Ia.Ftn.Cl.Model.Business.Huawei.Ont.FamilyType.Undefined;
1962: }
1963: else familyType = Ia.Ftn.Cl.Model.Business.Huawei.Ont.FamilyType.Undefined;
1964:
1965: return familyType;
1966: }
1967: */
1968:
1969: ////////////////////////////////////////////////////////////////////////////
1970:
1971: /// <summary>
1972: ///
1973: /// </summary>
1974: public static Ia.Cl.Models.Result UpdateDatabaseWithEmsCommandOutput(string rowData, ref Ia.Ftn.Cl.Models.Client.Huawei.Ems ems, out string systemIsBusyResponseCommand, out string ontLoadingCommandIsBeingExecutedNowResponseCommand)
1975: {
1976: string updatedService;
1977:
1978: var isProvisionEffectingUpdated = false;
1979: var isUpdated = false;
1980: var result = new Ia.Cl.Models.Result();
1981:
1982: updatedService = string.Empty;
1983:
1984: // below: remove all '\' characters from rowData and reset NULL comments to ""
1985: rowData = rowData.Replace(@"\", "");
1986: rowData = rowData.Replace(@"NULL", "");
1987:
1988: var response = Ia.Ftn.Cl.Models.Business.Huawei.Ems.ParseResponse(rowData);
1989:
1990: if (response != null)
1991: {
1992: // don't use if (response.QueryCommand) because if resource did not exist it will set Query command to false
1993:
1994: if (response.CommandFromCorrelationTagDictionaryByCtag.StartsWith("LST-DEV:"))
1995: {
1996: isUpdated = Ia.Ftn.Cl.Models.Data.Huawei.Dev.Update(response, out result);
1997: }
1998: else if (response.CommandFromCorrelationTagDictionaryByCtag.StartsWith("SAVE-DEV:"))
1999: {
2000: result.AddSuccess("SAVE-DEV (" + response.Ctag + "): " + response.CompletionCode + ", " + response.ResultCode.ToString());
2001: }
2002: else if (response.CommandFromCorrelationTagDictionaryByCtag.StartsWith("LST-BOARD:"))
2003: {
2004: isUpdated = Ia.Ftn.Cl.Models.Data.Huawei.Board.Update(response, out result);
2005: }
2006: else if (response.CommandFromCorrelationTagDictionaryByCtag.StartsWith("LST-PORT:"))
2007: {
2008: isUpdated = Ia.Ftn.Cl.Models.Data.Huawei.Port.Update(response, out result);
2009: }
2010:
2011: else if (response.CommandFromCorrelationTagDictionaryByCtag.StartsWith(@"LST-ONT::DEV="))
2012: {
2013: isUpdated = Ia.Ftn.Cl.Models.Data.Huawei.Ont.Update(response, out result);
2014: }
2015: else if (response.CommandFromCorrelationTagDictionaryByCtag.StartsWith(@"LST-ONT::DID="))
2016: {
2017: isUpdated = Ia.Ftn.Cl.Models.Data.Huawei.Ont.UpdateListWithDid(response, out result);
2018: }
2019:
2020: else if (response.CommandFromCorrelationTagDictionaryByCtag.StartsWith("LST-ONTSIPINFO:"))
2021: {
2022: isProvisionEffectingUpdated = Ia.Ftn.Cl.Models.Data.Huawei.OntSipInfo.Update(response, out updatedService, out result);
2023: }
2024: else if (response.CommandFromCorrelationTagDictionaryByCtag.StartsWith("CFG-ONTVAINDIV:"))
2025: {
2026: result.AddSuccess("CFG-ONTVAINDIV (" + response.Ctag + "): " + response.CompletionCode + ", " + response.ResultCode.ToString());
2027: }
2028:
2029: else if (response.CommandFromCorrelationTagDictionaryByCtag.StartsWith(@"LST-VOIPPSTNUSER::DEV"))
2030: {
2031: isProvisionEffectingUpdated = Ia.Ftn.Cl.Models.Data.Huawei.VoipPstnUser.Update(response, out result);
2032: }
2033: else if (response.CommandFromCorrelationTagDictionaryByCtag.StartsWith(@"LST-VOIPPSTNUSER::DN"))
2034: {
2035: isProvisionEffectingUpdated = Ia.Ftn.Cl.Models.Data.Huawei.VoipPstnUser.UpdateByDn(response, out updatedService, out result);
2036: }
2037:
2038:
2039: else if (response.CommandFromCorrelationTagDictionaryByCtag.StartsWith("ADD-VOIPPSTNUSER:"))
2040: {
2041: result.AddSuccess("ADD-VOIPPSTNUSER (" + response.Ctag + "): " + response.CompletionCode + ", " + response.ResultCode.ToString());
2042: }
2043: else if (response.CommandFromCorrelationTagDictionaryByCtag.StartsWith("DEL-VOIPPSTNUSER:"))
2044: {
2045: result.AddSuccess("DEL-VOIPPSTNUSER (" + response.Ctag + "): " + response.CompletionCode + ", " + response.ResultCode.ToString());
2046: }
2047: else if (response.CommandFromCorrelationTagDictionaryByCtag.StartsWith("CFG-VOIPPSTNACCOUNT:"))
2048: {
2049: result.AddSuccess("CFG-VOIPPSTNACCOUNT (" + response.Ctag + "): " + response.CompletionCode + ", " + response.ResultCode.ToString());
2050: }
2051: else if (response.CommandFromCorrelationTagDictionaryByCtag.StartsWith("LST-VAG:"))
2052: {
2053: isUpdated = Ia.Ftn.Cl.Models.Data.Huawei.Vag.Update(response, out result);
2054: }
2055: else if (response.CommandFromCorrelationTagDictionaryByCtag.StartsWith("MOD-ONT:"))
2056: {
2057: result.AddSuccess("MOD-ONT (" + response.Ctag + "): " + response.CompletionCode + ", " + response.ResultCode.ToString());
2058: }
2059: else if (response.CommandFromCorrelationTagDictionaryByCtag.StartsWith("RESET-ONT:"))
2060: {
2061: result.AddSuccess("RESET-ONT (" + response.Ctag + "): " + response.CompletionCode + ", " + response.ResultCode.ToString());
2062: }
2063: else if (response.CommandFromCorrelationTagDictionaryByCtag.StartsWith("SHAKEHAND:"))
2064: {
2065: result.AddSuccess("SHAKEHAND (" + response.Ctag + "): " + response.CompletionCode + ", " + response.ResultCode.ToString());
2066: }
2067: else if (response.CommandFromCorrelationTagDictionaryByCtag.StartsWith("LOGIN:"))
2068: {
2069: ems.IsLoggedIn = true;
2070:
2071: result.AddSuccess("LOGIN (" + response.Ctag + "): " + response.CompletionCode + ", " + response.ResultCode.ToString());
2072: }
2073: else if (response.CommandFromCorrelationTagDictionaryByCtag.StartsWith("LOGOUT:"))
2074: {
2075: ems.IsLoggedIn = false;
2076:
2077: result.AddSuccess("LOGOUT (" + response.Ctag + "): " + response.CompletionCode + ", " + response.ResultCode.ToString());
2078: }
2079: else
2080: {
2081: result.AddError("UpdateDatabaseWithEmsCommandOutput(): No designated opcode to process: (" + response.Ctag + "): " + response.CompletionCode + ", " + response.ResultCode.ToString());
2082: }
2083:
2084: if (response.ResultCode == Ia.Ftn.Cl.Models.Client.Huawei.Ems.ResultCode.SystemIsBusy1 || response.ResultCode == Ia.Ftn.Cl.Models.Client.Huawei.Ems.ResultCode.SystemIsBusy2) systemIsBusyResponseCommand = Ia.Ftn.Cl.Models.Business.Huawei.Ems.PrepareCtaggedCommand(response.CommandFromCorrelationTagDictionaryByCtag);
2085: else systemIsBusyResponseCommand = string.Empty;
2086:
2087: if (response.ResultCode == Ia.Ftn.Cl.Models.Client.Huawei.Ems.ResultCode.OntLoadingCommandIsBeingExecutedNow) ontLoadingCommandIsBeingExecutedNowResponseCommand = Ia.Ftn.Cl.Models.Business.Huawei.Ems.PrepareCtaggedCommand(response.CommandFromCorrelationTagDictionaryByCtag);
2088: else ontLoadingCommandIsBeingExecutedNowResponseCommand = string.Empty;
2089:
2090: if (isProvisionEffectingUpdated)
2091: {
2092: Ia.Ftn.Cl.Models.Data.MessageQueue.SecretaryApplication.Enqueue(Ia.Ftn.Cl.Models.Business.MessageQueue.Application.NceApplication, Ia.Ftn.Cl.Models.Business.MessageQueue.Process.Updated, updatedService);
2093: }
2094: }
2095: else
2096: {
2097: ontLoadingCommandIsBeingExecutedNowResponseCommand = string.Empty;
2098: systemIsBusyResponseCommand = string.Empty;
2099:
2100: result.AddError("Response is null");
2101: }
2102:
2103: return result;
2104: }
2105:
2106: ////////////////////////////////////////////////////////////////////////////
2107:
2108: /// <summary>
2109: /// Parse the NCE TL1 NBI response by approximatly following the "10.3 Response Format Description standard" in iManager NCE Unified Network Management System Guide.
2110: /// </summary>
2111: public static Response ParseResponse(string rowData)
2112: {
2113: bool attributeFirstGroupFlag;
2114: int blockTag, currentBlockCount, totalCount;
2115: long en;
2116: string header, responseIdentification, textBlock, endesc, terminator, quotedLine, result, title, attributeValueStringList, ctag, completionCode;
2117: DataTable dataTable;
2118: MatchCollection matchCollection;
2119: Ia.Ftn.Cl.Models.Business.Huawei.Ems.Response response;
2120: List<string> attributeList;
2121: List<List<string>> valueListList;
2122: Dictionary<string, string> attributeValueDictionary;
2123:
2124: blockTag = currentBlockCount = totalCount = 0;
2125:
2126: title = string.Empty;
2127: en = 0;
2128: endesc = string.Empty;
2129: ctag = string.Empty;
2130: completionCode = string.Empty;
2131:
2132: response = new Response();
2133:
2134: attributeList = new List<string>(100);
2135: valueListList = new List<List<string>>(100);
2136: attributeValueDictionary = new Dictionary<string, string>(100);
2137:
2138: // iManager_NCE_V200R014C60_TL1_NBI_User_Guide_13 document has header start with \r\n\n but there are issues with this I removed it
2139: matchCollection = Regex.Matches(rowData, @"( \d+? \d\d\d\d-\d\d-\d\d \d\d:\d\d:\d\d)(\r\nM [\S]+? [\w\d]+?)(\r\n EN=.+? ENDESC=.+?)(\r\n[;>])", RegexOptions.Singleline);
2140: // header response identification text block terminator
2141:
2142: foreach (Match match in matchCollection)
2143: {
2144: header = match.Groups[1].Value;
2145: responseIdentification = match.Groups[2].Value;
2146: textBlock = match.Groups[3].Value;
2147: terminator = match.Groups[4].Value;
2148:
2149: if (!string.IsNullOrEmpty(responseIdentification))
2150: {
2151: matchCollection = Regex.Matches(responseIdentification, @"^\r\nM ([\S]+?) ([\w\d]+?)$", RegexOptions.Singleline);
2152:
2153: foreach (Match match9 in matchCollection)
2154: {
2155: ctag = match9.Groups[1].Value;
2156: completionCode = match9.Groups[2].Value;
2157:
2158: if (!string.IsNullOrEmpty(textBlock))
2159: {
2160: matchCollection = Regex.Matches(textBlock, @"^\r\n EN=(.+?) ENDESC=(.+?)\r\n (.+?\r\n)$", RegexOptions.Singleline); // if you do (.+?)$ you will not match the last \n
2161:
2162: if (matchCollection.Count > 0)
2163: {
2164: foreach (Match match2 in matchCollection)
2165: {
2166: en = long.Parse(match2.Groups[1].Value);
2167: endesc = match2.Groups[2].Value;
2168: quotedLine = match2.Groups[3].Value;
2169:
2170: if (!string.IsNullOrEmpty(quotedLine))
2171: {
2172: response.QueryCommand = true;
2173:
2174: matchCollection = Regex.Matches(quotedLine, @"^blktag=(.+?)\r\n blkcount=(.+?)\r\n blktotal=(.+?)\r\n(.+?\r\n)$", RegexOptions.Singleline); // if you do (.+?)$ you will not match the last \n
2175:
2176: foreach (Match match3 in matchCollection)
2177: {
2178: blockTag = int.Parse(match3.Groups[1].Value);
2179: currentBlockCount = int.Parse(match3.Groups[2].Value);
2180: totalCount = int.Parse(match3.Groups[3].Value);
2181:
2182: result = match3.Groups[4].Value;
2183:
2184: if (!string.IsNullOrEmpty(result))
2185: {
2186: matchCollection = Regex.Matches(result, @"^\r\n(.+?)\r\n-*\r\n(.+?\r\n)-*(\r\n)+$", RegexOptions.Singleline);
2187:
2188: foreach (Match match4 in matchCollection)
2189: {
2190: title = match4.Groups[1].Value;
2191:
2192: attributeValueStringList = match4.Groups[2].Value;
2193:
2194: if (!string.IsNullOrEmpty(attributeValueStringList))
2195: {
2196: matchCollection = Regex.Matches(attributeValueStringList, @"(.+?)\r\n", RegexOptions.Singleline);
2197:
2198: attributeFirstGroupFlag = true;
2199:
2200: foreach (Match match5 in matchCollection)
2201: {
2202: if (attributeFirstGroupFlag)
2203: {
2204: attributeList = new List<string>(Regex.Split(match5.Groups[1].Value, @"\t"));
2205:
2206: attributeFirstGroupFlag = false;
2207: }
2208: else valueListList.Add(new List<string>(Regex.Split(match5.Groups[1].Value, @"\t")));
2209: }
2210: }
2211: }
2212: }
2213: }
2214: }
2215: else
2216: {
2217: response.QueryCommand = false;
2218: }
2219: }
2220: }
2221: else
2222: {
2223: matchCollection = Regex.Matches(textBlock, @"^\r\n EN=(.+?) ENDESC=(.+?)$", RegexOptions.Singleline); // if you do (.+?)$ you will not match the last \n
2224:
2225: foreach (Match match6 in matchCollection)
2226: {
2227: en = long.Parse(match6.Groups[1].Value);
2228: endesc = match6.Groups[2].Value;
2229: }
2230: }
2231: }
2232: }
2233: }
2234: }
2235:
2236: // build datatable
2237:
2238: dataTable = new DataTable();
2239: dataTable.Clear();
2240:
2241: if (attributeList.Count > 0)
2242: {
2243: foreach (string attribute in attributeList) dataTable.Columns.Add(attribute);
2244:
2245: if (valueListList.Count > 0)
2246: {
2247: if (attributeList.Count == valueListList[0].Count)
2248: {
2249: foreach (List<string> valuelist in valueListList)
2250: {
2251: dataTable.Rows.Add(valuelist.ToArray());
2252: }
2253: }
2254: else
2255: {
2256: throw new Exception("ParseResponse(): attributeList.Count != valueListList[0].Count. attributeList: " + string.Join(",", attributeList) + "; valueListList: " + string.Join(",", valueListList));
2257: }
2258: }
2259: }
2260: else dataTable = null;
2261:
2262: response.BlockTag = blockTag;
2263: response.CurrentBlockCount = currentBlockCount;
2264: response.TotalCount = totalCount;
2265:
2266: if (System.Enum.IsDefined(typeof(Ia.Ftn.Cl.Models.Client.Huawei.Ems.ResultCode), en))
2267: {
2268: response.ResultCode = (Ia.Ftn.Cl.Models.Client.Huawei.Ems.ResultCode)en;
2269: }
2270: else response.ResultCode = Ia.Ftn.Cl.Models.Client.Huawei.Ems.ResultCode.Unknown;
2271:
2272: response.Title = title;
2273: response.En = en;
2274: response.Endesc = endesc;
2275: response.Ctag = ctag;
2276: response.CompletionCode = completionCode;
2277: response.QueryDataTable = dataTable;
2278:
2279: return response;
2280: }
2281:
2282: ////////////////////////////////////////////////////////////////////////////
2283: ////////////////////////////////////////////////////////////////////////////
2284: }
2285:
2286: ////////////////////////////////////////////////////////////////////////////
2287: ////////////////////////////////////////////////////////////////////////////
2288: }
- 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) :