Public general use code classes and xml files that we've compiled and used over the years:
Default support class for Fixed Telecommunications Network (FTN) data model.
1: using Microsoft.EntityFrameworkCore;
2: using System;
3: using System.Collections;
4: using System.Collections.Generic;
5: using System.Data;
6: using System.Linq;
7: using System.Text;
8:
9: namespace Ia.Ftn.Cl.Models.Data
10: {
11: ////////////////////////////////////////////////////////////////////////////
12:
13: /// <summary publish="true">
14: /// Default support class for Fixed Telecommunications Network (FTN) data model.
15: /// </summary>
16: ///
17: /// <remarks>
18: /// Copyright © 2006-2020 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 Default
31: {
32: private static StringBuilder logStringBuilder = new StringBuilder();
33:
34: ////////////////////////////////////////////////////////////////////////////
35:
36: /// <summary>
37: ///
38: /// </summary>
39: public Default() { }
40:
41: ////////////////////////////////////////////////////////////////////////////
42:
43: /// <summary>
44: ///
45: /// </summary>
46: public static List<string> NewOntEventAndAccessBySerialInNoteList()
47: {
48: List<string> list;
49:
50: list = new List<string>();
51:
52: var bList = Ia.Ftn.Cl.Models.Data.Event.NewOntList;
53:
54: //var aList = Ia.Ftn.Cl.Model.Data.Access.BySerialInNote();
55:
56:
57: return list;
58: }
59:
60: ////////////////////////////////////////////////////////////////////////////
61:
62: /// <summary>
63: ///
64: /// </summary>
65: public static List<Ia.Ftn.Cl.Models.Ui.ServiceCustomerAddressAccessStatisticalAccessName> DifferentOntNameAndStatisticalOntNameList(int siteId)
66: {
67: string address;
68: Ia.Ftn.Cl.Models.Business.ServiceAddress serviceAddress;
69: Ia.Ftn.Cl.Models.Access statisticalAccess;
70: Ia.Ftn.Cl.Models.Ui.ServiceCustomerAddressAccessStatisticalAccessName serviceCustomerAddressAccessStatisticalAccessName;
71:
72: var level = string.Empty;
73:
74: var site = (from s in Ia.Ftn.Cl.Models.Data.NetworkDesignDocument.SiteList
75: where s.Id == siteId
76: select s).SingleOrDefault();
77:
78:
79: var areaIdToNameArabicNameDictionary = Ia.Ftn.Cl.Models.Data.Service.AreaIdToNameArabicNameDictionary;
80:
81: var list = new List<Ia.Ftn.Cl.Models.Ui.ServiceCustomerAddressAccessStatisticalAccessName>();
82:
83: using (var db = new Ia.Ftn.Cl.Db())
84: {
85: var siteRouterDomainList = (from r in Ia.Ftn.Cl.Models.Data.NetworkDesignDocument.RouterList
86: where r.Site.Id == siteId
87: select r).SelectMany(z => z.DomainList).ToList();
88:
89: var hashTable = Ia.Ftn.Cl.Models.Data.ServiceRequest.NumberToCustomerAddressHashtable(siteRouterDomainList);
90:
91: var serviceRequestServiceServiceAccessList = (from srs in db.ServiceRequestServices
92: select new { srs.Service, srs.Access }).AsNoTracking().ToList();
93:
94: serviceRequestServiceServiceAccessList = (from srs in serviceRequestServiceServiceAccessList
95: where siteRouterDomainList.Any(u => srs.Service.StartsWith(u.ToString()))
96: select srs).ToList();
97:
98: var areaIdList = site.KuwaitFtnAreas.Select(i => i.Id).ToList();
99:
100: /*
101: var accessList = (from a in db.Accesses
102: where areaIdList.Contains(a.AreaId)
103: select a).AsNoTracking().ToList();
104: */
105:
106: foreach (var srs in serviceRequestServiceServiceAccessList)
107: {
108: serviceCustomerAddressAccessStatisticalAccessName = new Ia.Ftn.Cl.Models.Ui.ServiceCustomerAddressAccessStatisticalAccessName();
109:
110: if (hashTable[srs.Service] != null) address = hashTable[srs.Service].ToString();
111: else address = null;
112:
113: serviceCustomerAddressAccessStatisticalAccessName.Service = srs.Service;
114: serviceCustomerAddressAccessStatisticalAccessName.CustomerAddress = address;
115: serviceCustomerAddressAccessStatisticalAccessName.Access = srs.Access;
116:
117: if (srs.Access != null) serviceCustomerAddressAccessStatisticalAccessName.OntAddress = srs.Access.Address;
118:
119: serviceAddress = Ia.Ftn.Cl.Models.Business.ServiceRequest.ServiceAddress(srs.Service, address, out level);
120:
121: // below: this will skip Sabah Al-Salem area
122: //if (l.CustomerAddress != null && !l.CustomerAddress.Contains("صباح"))
123: //{
124: statisticalAccess = null; // Ia.Ftn.Cl.Model.Data.Access.StatisticalAccess(serviceAddress, ref accessList);
125:
126: if (statisticalAccess != null)
127: {
128: serviceCustomerAddressAccessStatisticalAccessName.Block = statisticalAccess.Block;
129: serviceCustomerAddressAccessStatisticalAccessName.Street = statisticalAccess.Street;
130: serviceCustomerAddressAccessStatisticalAccessName.PremisesOld = statisticalAccess.PremisesOld;
131: serviceCustomerAddressAccessStatisticalAccessName.PremisesNew = statisticalAccess.PremisesNew;
132: serviceCustomerAddressAccessStatisticalAccessName.KuwaitFtnAreaNameArabicName = areaIdToNameArabicNameDictionary[statisticalAccess.AreaId];
133:
134: serviceCustomerAddressAccessStatisticalAccessName.StatisticalAccessName = statisticalAccess.Name;
135:
136: /*
137: if (nokiaInitialInstallationListHashTable.ContainsKey(statisticalAccess.Id))
138: {
139: l.Note = nokiaInitialInstallationListHashTable[statisticalAccess.Id].ToString();
140: }
141: */
142: //else l.Note = "No: " + srs.Access.Id;
143: }
144:
145: if (serviceAddress.AreaId != 0)
146: {
147: serviceCustomerAddressAccessStatisticalAccessName.StatisticalAddress = serviceAddress.Address;
148:
149: if (srs.Access != null) serviceCustomerAddressAccessStatisticalAccessName.AccessName = serviceCustomerAddressAccessStatisticalAccessName.Access.Name;
150:
151: //if (l.OntName != null && l.OntName == l.StatisticalOntName) l.Note = Ia.Cl.Models.Default.YesNo(true);
152: //else l.Note = Ia.Cl.Models.Default.YesNo(false);
153:
154: //l.Note += " (" + level + ")";
155: }
156: else
157: {
158: //l.Note = Ia.Cl.Models.Default.YesNo(false);
159:
160: //l.Note += " (AreaId zero)";
161: }
162:
163: list.Add(serviceCustomerAddressAccessStatisticalAccessName);
164: //}
165: //else
166: //{
167:
168: //}
169: }
170: }
171:
172: return list;
173: }
174:
175: ////////////////////////////////////////////////////////////////////////////
176:
177: /// <summary>
178: ///
179: /// </summary>
180: public static List<Ia.Ftn.Cl.Models.Ui.ServiceCustomerAddressAccessStatisticalAccessName> DifferentOntNameAndStatisticalOntNameList2(int siteId)
181: {
182: string address, level;
183: Hashtable hashTable; //, nokiaInitialInstallationListHashTable;
184: Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Site site;
185: Ia.Ftn.Cl.Models.Business.ServiceAddress serviceAddress;
186: Ia.Ftn.Cl.Models.Access statisticalAccess;
187: Ia.Ftn.Cl.Models.Ui.ServiceCustomerAddressAccessStatisticalAccessName l;
188:
189: List<int> siteRouterDomainList, areaIdList;
190: List<Ia.Ftn.Cl.Models.Ui.ServiceCustomerAddressAccessStatisticalAccessName> list;
191: //List<Ia.Ftn.Cl.Model.ServiceRequest> serviceRequestList;
192: //List<Ia.Ftn.Cl.Model.Ui.Access> accessList;
193: Dictionary<int, string> areaIdToNameArabicNameDictionary;
194:
195: level = string.Empty;
196: areaIdList = new List<int>();
197:
198: site = (from a in Ia.Ftn.Cl.Models.Data.NetworkDesignDocument.SiteList
199: where a.Id == siteId
200: select a).SingleOrDefault();
201:
202: var ontAccessIdToOntAccessNameDictionary = Ia.Ftn.Cl.Models.Data.NetworkDesignDocument.OntAccessIdToOntAccessNameDictionary;
203:
204: areaIdToNameArabicNameDictionary = Ia.Ftn.Cl.Models.Data.Service.AreaIdToNameArabicNameDictionary;
205:
206: using (var db = new Ia.Ftn.Cl.Db())
207: {
208: siteRouterDomainList = (from r in Ia.Ftn.Cl.Models.Data.NetworkDesignDocument.RouterList
209: where r.Site.Id == siteId
210: select r).SelectMany(z => z.DomainList).ToList();
211: //siteRouterDomainList = new List<int> { 2538 };
212:
213: //serviceRequestList = (from sr in db.ServiceRequests where siteRouterDomainList.Contains(sr.Number / 10000) || siteRouterDomainList.Contains(sr.Number / 1000) select sr).ToList();
214:
215: hashTable = Ia.Ftn.Cl.Models.Data.ServiceRequest.NumberToCustomerAddressHashtable(siteRouterDomainList);
216:
217: var serviceRequestServiceList = (from srs in db.ServiceRequestServices
218: where siteRouterDomainList.Any(u => srs.Service.StartsWith(u.ToString()))
219: select new { srs.Service, AccessId = (srs.Access != null) ? srs.Access.Id : string.Empty }).ToList();
220:
221: areaIdList = site.KuwaitFtnAreas.Select(i => i.Id).ToList();
222: //areaIdList = new List<int> { 60618 };
223:
224: //accessList = null;// (from a in db.Accesses where areaIdList.Contains(a.AreaId) select a).ToList();
225:
226: list = new List<Ia.Ftn.Cl.Models.Ui.ServiceCustomerAddressAccessStatisticalAccessName>();
227:
228: foreach (var srs in serviceRequestServiceList)
229: {
230: l = new Ia.Ftn.Cl.Models.Ui.ServiceCustomerAddressAccessStatisticalAccessName();
231:
232: if (hashTable[srs.Service] != null) address = hashTable[srs.Service].ToString();
233: else address = null;
234:
235: l.Service = srs.Service;
236: l.CustomerAddress = address;
237:
238: if (ontAccessIdToOntAccessNameDictionary.ContainsKey(srs.AccessId)) l.AccessId = srs.AccessId;
239: else l.Access = null;
240:
241: if (!string.IsNullOrEmpty(srs.AccessId)) l.OntAddress = string.Empty;// srs.Access.Address;
242:
243: //------------------
244: serviceAddress = Ia.Ftn.Cl.Models.Business.ServiceRequest.ServiceAddress(srs.Service, address, out level);
245:
246: statisticalAccess = null;// Ia.Ftn.Cl.Model.Data.Access.StatisticalAccess(serviceAddress, ref accessList);
247:
248: if (statisticalAccess != null)
249: {
250: l.Block = statisticalAccess.Block;
251: l.Street = statisticalAccess.Street;
252: l.PremisesOld = statisticalAccess.PremisesOld;
253: l.PremisesNew = statisticalAccess.PremisesNew;
254: l.KuwaitFtnAreaNameArabicName = areaIdToNameArabicNameDictionary[statisticalAccess.AreaId];
255:
256: l.StatisticalAccessName = string.Empty;// statisticalAccess.Name;
257:
258: /*
259: if (nokiaInitialInstallationListHashTable.ContainsKey(statisticalAccess.Id))
260: {
261: l.Note = nokiaInitialInstallationListHashTable[statisticalAccess.Id].ToString();
262: }
263: */
264: //else l.Note = "No: " + srs.Access.Id;
265: }
266:
267: if (serviceAddress.AreaId != 0)
268: {
269: l.StatisticalAddress = string.Empty;// serviceAddress.Address;
270:
271: if (!string.IsNullOrEmpty(srs.AccessId))
272: {
273: l.AccessName = string.Empty;// l.Access.Name;
274: }
275:
276: //if (l.OntName != null && l.OntName == l.StatisticalOntName) l.Note = Ia.Cl.Models.Default.YesNo(true);
277: //else l.Note = Ia.Cl.Models.Default.YesNo(false);
278:
279: //l.Note += " (" + level + ")";
280: }
281: else
282: {
283: //l.Note = Ia.Cl.Models.Default.YesNo(false);
284:
285: //l.Note += " (AreaId zero)";
286: }
287:
288: list.Add(l);
289: }
290: }
291:
292: return list;
293: }
294:
295: ////////////////////////////////////////////////////////////////////////////
296:
297: /// <summary>
298: ///
299: /// </summary>
300: public static void SiteSerivceAndEmsOntAndAccessAndServiceRequestAndServiceRequestTypeInformation(int siteId, out StringBuilder sb)
301: {
302: int areaId, customerId;
303: string s, accessId;
304: string service, alias, area, block, street, premisesOld, paci, customerName, customerAddress, typeId1, typeId2, typeId4, typeId5;
305:
306: List<int> siteRouterDomainList, areaIdList;
307: List<string> serviceList;
308: Dictionary<int, string> areaIdToNameArabicNameDictionary;
309:
310: sb = new StringBuilder();
311:
312: areaIdList = new List<int>();
313:
314: /*
315: Service2S ONTs(EMS) Accesses Accesses Accesses Accesses Accesses Service Requests Service Requests Service Requests Service Requests Types Service Requests Service Requests Service Requests
316: Service ALIAS Area Block Street Premises Old PACI Customer ID Customer Name Address Type ID-1 Type ID-2 Type ID 4 Type ID 5
317: */
318:
319: var site = (from a in Ia.Ftn.Cl.Models.Data.NetworkDesignDocument.SiteList where a.Id == siteId select a).SingleOrDefault();
320:
321: siteRouterDomainList = (from r in Ia.Ftn.Cl.Models.Data.NetworkDesignDocument.RouterList where r.Site.Id == siteId select r).SelectMany(z => z.DomainList).ToList();
322:
323: areaIdToNameArabicNameDictionary = Ia.Ftn.Cl.Models.Data.Service.AreaIdToNameArabicNameDictionary;
324:
325: serviceList = Ia.Ftn.Cl.Models.Data.Service2.List(siteRouterDomainList);
326:
327: var serviceToAccessIdDictionary = Ia.Ftn.Cl.Models.Data.Service2.ServiceToAccessIdDictionary;
328:
329: var idToAccessDictionary = Ia.Ftn.Cl.Models.Data.Access.IdToAccessDictionary;
330:
331: var accessIdToOntDictionary = Ia.Ftn.Cl.Models.Data.Huawei.Ont.AccessIdToOntDictionary;
332:
333: var serviceToServiceRequestServiceDictionary = Ia.Ftn.Cl.Models.Data.ServiceRequestService.ServiceToServiceRequestServiceDictionary(siteRouterDomainList);
334:
335: var serviceToServiceRequestDictionary = Ia.Ftn.Cl.Models.Data.ServiceRequest.ServiceToServiceRequestDictionary(siteRouterDomainList);
336:
337:
338: s = "Service\tALIAS\tArea\tBlock\tStreet\tPremises Old\tPACI\tCustomer ID\tCustomer Name\tAddress\tType ID-1\tType ID-2\tType ID 4\tType ID 5";
339: sb.AppendLine(s);
340:
341: foreach (string u in serviceList)
342: {
343: service = u;
344:
345: if (serviceToAccessIdDictionary.ContainsKey(u))
346: {
347: accessId = serviceToAccessIdDictionary[u];
348:
349: if (idToAccessDictionary.ContainsKey(accessId))
350: {
351: areaId = idToAccessDictionary[accessId].AreaId;
352: block = idToAccessDictionary[accessId].Block;
353: street = idToAccessDictionary[accessId].Street;
354: premisesOld = idToAccessDictionary[accessId].PremisesOld;
355: paci = idToAccessDictionary[accessId].Paci;
356:
357: if (areaIdToNameArabicNameDictionary.ContainsKey(areaId)) area = areaIdToNameArabicNameDictionary[areaId];
358: else area = string.Empty;
359:
360: if (accessIdToOntDictionary.ContainsKey(accessId))
361: {
362: alias = accessIdToOntDictionary[accessId].ALIAS;
363: }
364: else
365: {
366: alias = string.Empty;
367: }
368: }
369: else
370: {
371: block = string.Empty;
372: street = string.Empty;
373: premisesOld = string.Empty;
374: paci = string.Empty;
375: area = string.Empty;
376:
377: alias = string.Empty;
378: }
379: }
380: else
381: {
382: block = string.Empty;
383: street = string.Empty;
384: premisesOld = string.Empty;
385: paci = string.Empty;
386: area = string.Empty;
387:
388: alias = string.Empty;
389: }
390:
391:
392: if (serviceToServiceRequestServiceDictionary.ContainsKey(u))
393: {
394: if (serviceToServiceRequestServiceDictionary[u].Provisioned)
395: {
396: if (serviceToServiceRequestServiceDictionary[u].ServiceRequests.Count > 0)
397: {
398: //var bb = serviceToServiceRequestServiceDictionary[u].ServiceRequests.OrderByDescending(y => y.Id).FirstOrDefault();
399:
400: if (serviceToServiceRequestServiceDictionary[u].ServiceRequests.OrderByDescending(y => y.Id).FirstOrDefault() != null)
401: {
402: customerId = serviceToServiceRequestServiceDictionary[u].ServiceRequests.OrderByDescending(y => y.Id).FirstOrDefault().CustomerId;
403: customerName = serviceToServiceRequestServiceDictionary[u].ServiceRequests.OrderByDescending(y => y.Id).FirstOrDefault().CustomerName;
404: customerAddress = serviceToServiceRequestServiceDictionary[u].ServiceRequests.OrderByDescending(y => y.Id).FirstOrDefault().CustomerAddress;
405:
406: if (serviceToServiceRequestServiceDictionary[u].ServiceRequests.OrderByDescending(y => y.Id).FirstOrDefault().ServiceRequestTypes.Count > 0)
407: {
408: var vv = (from srt in serviceToServiceRequestServiceDictionary[u].ServiceRequests.OrderByDescending(y => y.Id).FirstOrDefault().ServiceRequestTypes
409: group srt by new { srt.TypeId, srt.Value } into g
410: select new //Ia.Ftn.Cl.Model.Ui.ServiceAreaSymbolServiceRequestTypeIdServiceRequestTypeValue
411: {
412: TypeId1Value = g.Max(v => v.TypeId == 1 ? v.Value : ""),
413: TypeId2Value = g.Max(v => v.TypeId == 2 ? v.Value : ""),
414: TypeId4Value = g.Max(v => v.TypeId == 4 ? v.Value : ""),
415: TypeId5Value = g.Max(v => v.TypeId == 5 ? v.Value : ""),
416: }).ToList();
417:
418: typeId1 = string.Empty;
419: typeId2 = string.Empty;
420: typeId4 = string.Empty;
421: typeId5 = string.Empty;
422:
423: foreach (var w in vv)
424: {
425: if (!string.IsNullOrEmpty(w.TypeId1Value)) typeId1 = w.TypeId1Value;
426: if (!string.IsNullOrEmpty(w.TypeId2Value)) typeId2 = w.TypeId2Value;
427: if (!string.IsNullOrEmpty(w.TypeId4Value)) typeId4 = w.TypeId4Value;
428: if (!string.IsNullOrEmpty(w.TypeId5Value)) typeId5 = w.TypeId5Value;
429: }
430: }
431: else
432: {
433: customerId = 0;
434: customerName = string.Empty;
435: customerAddress = string.Empty;
436:
437: typeId1 = string.Empty;
438: typeId2 = string.Empty;
439: typeId4 = string.Empty;
440: typeId5 = string.Empty;
441: }
442: }
443: else
444: {
445: customerId = 0;
446: customerName = string.Empty;
447: customerAddress = string.Empty;
448:
449: typeId1 = string.Empty;
450: typeId2 = string.Empty;
451: typeId4 = string.Empty;
452: typeId5 = string.Empty;
453: }
454: }
455: else
456: {
457: customerId = 0;
458: customerName = string.Empty;
459: customerAddress = string.Empty;
460:
461: typeId1 = string.Empty;
462: typeId2 = string.Empty;
463: typeId4 = string.Empty;
464: typeId5 = string.Empty;
465: }
466: }
467: else
468: {
469: customerId = 0;
470: customerName = string.Empty;
471: customerAddress = string.Empty;
472:
473: typeId1 = string.Empty;
474: typeId2 = string.Empty;
475: typeId4 = string.Empty;
476: typeId5 = string.Empty;
477: }
478: }
479: else
480: {
481: if (serviceToServiceRequestDictionary.ContainsKey(u))
482: {
483: customerId = serviceToServiceRequestDictionary[u].CustomerId;
484: customerName = serviceToServiceRequestDictionary[u].CustomerName;
485: customerAddress = serviceToServiceRequestDictionary[u].CustomerAddress;
486:
487: if (serviceToServiceRequestDictionary[u].ServiceRequestTypes.Count > 0)
488: {
489: var vv = (from srt in serviceToServiceRequestDictionary[u].ServiceRequestTypes
490: group srt by new { srt.TypeId, srt.Value } into g
491: select new //Ia.Ftn.Cl.Model.Ui.ServiceAreaSymbolServiceRequestTypeIdServiceRequestTypeValue
492: {
493: TypeId1Value = g.Max(v => v.TypeId == 1 ? v.Value : ""),
494: TypeId2Value = g.Max(v => v.TypeId == 2 ? v.Value : ""),
495: TypeId4Value = g.Max(v => v.TypeId == 4 ? v.Value : ""),
496: TypeId5Value = g.Max(v => v.TypeId == 5 ? v.Value : ""),
497: }).FirstOrDefault(); //.SingleOrDefault();
498:
499: typeId1 = vv.TypeId1Value;
500: typeId2 = vv.TypeId2Value;
501: typeId4 = vv.TypeId4Value;
502: typeId5 = vv.TypeId5Value;
503: }
504: else
505: {
506: typeId1 = string.Empty;
507: typeId2 = string.Empty;
508: typeId4 = string.Empty;
509: typeId5 = string.Empty;
510: }
511: }
512: else
513: {
514: customerId = 0;
515: customerName = string.Empty;
516: customerAddress = string.Empty;
517:
518: typeId1 = string.Empty;
519: typeId2 = string.Empty;
520: typeId4 = string.Empty;
521: typeId5 = string.Empty;
522: }
523: }
524:
525: s = service + "\t" + alias + "\t" + area + "\t" + block + "\t" + street + "\t" + premisesOld + "\t" + paci + "\t" + customerId + "\t" + customerName + "\t" + customerAddress + "\t" + typeId1 + "\t" + typeId2 + "\t" + typeId4 + "\t" + typeId5 + "";
526: sb.AppendLine(s);
527:
528: }
529: }
530:
531: ////////////////////////////////////////////////////////////////////////////
532:
533: /// <summary>
534: ///
535: /// </summary>
536: public static List<Ia.Ftn.Cl.Models.Ui.ServiceAreaSymbolServiceRequestTypeIdServiceRequestTypeValue> ServicesWithinSiteWithRelevantServiceRequestTypeList(int siteId)
537: {
538: Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Site site;
539: List<int> siteKuwaitFtnAreaIdList;
540: List<Ia.Ftn.Cl.Models.Ui.ServiceAreaSymbolServiceRequestTypeIdServiceRequestTypeValue> list;
541: Dictionary<int, string> areaIdToSymbolDictionary;
542:
543: areaIdToSymbolDictionary = Ia.Ftn.Cl.Models.Data.Service.AreaIdToSymbolDictionary;
544:
545: site = (from s in Ia.Ftn.Cl.Models.Data.NetworkDesignDocument.SiteList where s.Id == siteId select s).SingleOrDefault();
546: siteKuwaitFtnAreaIdList = (from kna in site.KuwaitFtnAreas select kna.Id).ToList();
547:
548: using (var db = new Ia.Ftn.Cl.Db())
549: {
550: var serviceAreaIdTypeIdValue = (from srs in db.ServiceRequestServices
551: join sr in db.ServiceRequests on srs.Id equals sr.ServiceRequestService.Id
552: join srt in db.ServiceRequestTypes on sr.Id equals srt.ServiceRequest.Id
553: where srs.Provisioned == true && siteKuwaitFtnAreaIdList.Contains(sr.AreaId)
554: select new
555: {
556: Service = srs.Service,
557: AreaId = sr.AreaId,
558: TypeId = srt.TypeId,
559: Value = srt.Value
560: }
561: ).ToList();
562:
563: list = (from a in serviceAreaIdTypeIdValue
564: group a by new { a.Service, a.AreaId } into g
565: select new Ia.Ftn.Cl.Models.Ui.ServiceAreaSymbolServiceRequestTypeIdServiceRequestTypeValue
566: {
567: Service = g.Key.Service,
568: AreaSymbol = areaIdToSymbolDictionary[g.Key.AreaId],
569: TypeId1Value = g.Max(u => u.TypeId == 1 ? u.Value : "?"),
570: TypeId2Value = g.Max(u => u.TypeId == 2 ? u.Value : "?"),
571: TypeId3Value = g.Max(u => u.TypeId == 3 ? u.Value : "?"),
572: TypeId4Value = g.Max(u => u.TypeId == 4 ? u.Value : "?"),
573: TypeId5Value = g.Max(u => u.TypeId == 5 ? u.Value : "?"),
574: }).ToList();
575:
576: }
577:
578: return list;
579: }
580:
581: ////////////////////////////////////////////////////////////////////////////
582:
583: /// <summary>
584: ///
585: /// </summary>
586: public static Dictionary<string, int> ServiceRequestServiceServiceToKuwaitFtnAreaIdDictionary
587: {
588: get
589: {
590: string accessId;
591: Dictionary<string, string> serviceRequestServiceServiceToAccessIdDictionary;
592: Dictionary<string, int> dictionary, accessIdToKuwaitFtnAreaIdDictionary;
593:
594: serviceRequestServiceServiceToAccessIdDictionary = Ia.Ftn.Cl.Models.Data.ServiceRequestService.ProvisionedServiceIdToAccessIdDictionary;
595: accessIdToKuwaitFtnAreaIdDictionary = Ia.Ftn.Cl.Models.Data.Access.IdToKuwaitFtnAreaIdDictionary;
596:
597: if (serviceRequestServiceServiceToAccessIdDictionary.Count > 0)
598: {
599: dictionary = new Dictionary<string, int>(serviceRequestServiceServiceToAccessIdDictionary.Count);
600:
601: foreach (string s in serviceRequestServiceServiceToAccessIdDictionary.Keys)
602: {
603: accessId = serviceRequestServiceServiceToAccessIdDictionary[s].ToString();
604:
605: if (accessId != null)
606: {
607: if (accessIdToKuwaitFtnAreaIdDictionary.ContainsKey(accessId))
608: {
609: dictionary[s] = accessIdToKuwaitFtnAreaIdDictionary[accessId];
610: }
611: }
612: else dictionary[s] = 0;
613: }
614: }
615: else
616: {
617: dictionary = new Dictionary<string, int>();
618: }
619:
620: return dictionary;
621: }
622: }
623:
624: ////////////////////////////////////////////////////////////////////////////
625:
626: /// <summary>
627: ///
628: /// </summary>
629: public static Dictionary<string, int> ServiceServiceToKuwaitFtnAreaIdDictionary
630: {
631: get
632: {
633: string accessId;
634: Dictionary<string, string> serviceServiceToAccessIdDictionary;
635: Dictionary<string, int> dictionary, accessIdToKuwaitFtnAreaIdDictionary;
636:
637: serviceServiceToAccessIdDictionary = Ia.Ftn.Cl.Models.Data.Service2.ServiceIdToAccessIdDictionary;
638: accessIdToKuwaitFtnAreaIdDictionary = Ia.Ftn.Cl.Models.Data.Access.IdToKuwaitFtnAreaIdDictionary;
639:
640: if (serviceServiceToAccessIdDictionary.Count > 0)
641: {
642: dictionary = new Dictionary<string, int>(serviceServiceToAccessIdDictionary.Count);
643:
644: foreach (string s in serviceServiceToAccessIdDictionary.Keys)
645: {
646: accessId = serviceServiceToAccessIdDictionary[s].ToString();
647:
648: if (accessId != null)
649: {
650: if (accessIdToKuwaitFtnAreaIdDictionary.ContainsKey(accessId))
651: {
652: dictionary[s] = accessIdToKuwaitFtnAreaIdDictionary[accessId];
653: }
654: }
655: else dictionary[s] = 0;
656: }
657: }
658: else
659: {
660: dictionary = new Dictionary<string, int>();
661: }
662:
663: return dictionary;
664: }
665: }
666:
667: ////////////////////////////////////////////////////////////////////////////
668:
669: /// <summary>
670: ///
671: /// </summary>
672: public static void DeleteDatabaseRecordsThatReferenceNonExistantOltsInNdd()
673: {
674: string sqlWhereString;
675: StringBuilder sb;
676: List<int> list;
677:
678: sb = new StringBuilder();
679:
680: list = (from o in Ia.Ftn.Cl.Models.Data.NetworkDesignDocument.OltList select o.Id).ToList();
681:
682: if (list.Count > 40 && list.Count < 100)
683: {
684: sqlWhereString = string.Empty;
685:
686: foreach (int i in list) sqlWhereString += "{variable} not like '" + i + "%' and ";
687: sqlWhereString = sqlWhereString.Remove(sqlWhereString.Length - 5, 5);
688:
689: sb.AppendLine("delete from OntServiceVoips where " + sqlWhereString.Replace("{variable}", "Ont_Id"));
690: sb.AppendLine("delete from OntServiceVoips where " + sqlWhereString.Replace("{variable}", "Id"));
691:
692: sb.AppendLine("delete from OntOntPots where " + sqlWhereString.Replace("{variable}", "Ont_Id"));
693: sb.AppendLine("delete from OntOntPots where " + sqlWhereString.Replace("{variable}", "Id"));
694:
695: sb.AppendLine("delete from Events where " + sqlWhereString.Replace("{variable}", "Ont_Id"));
696:
697: sb.AppendLine("delete from Onts where " + sqlWhereString.Replace("{variable}", "Access_Id"));
698: sb.AppendLine("delete from Onts where " + sqlWhereString.Replace("{variable}", "Id"));
699:
700: sb.AppendLine("delete from EmsOntSipInfoes where " + sqlWhereString.Replace("{variable}", "EmsOnt_Id"));
701: sb.AppendLine("delete from EmsOntSipInfoes where " + sqlWhereString.Replace("{variable}", "Id"));
702:
703: sb.AppendLine("delete from EmsOnts where " + sqlWhereString.Replace("{variable}", "Access_Id"));
704: sb.AppendLine("delete from EmsOnts where " + sqlWhereString.Replace("{variable}", "Id"));
705:
706: sb.AppendLine("delete from ServiceRequestOntDetails where " + sqlWhereString.Replace("{variable}", "ServiceRequestOnt_Id"));
707: sb.AppendLine("delete from ServiceRequestOntDetails where " + sqlWhereString.Replace("{variable}", "Id"));
708:
709: sb.AppendLine("delete from ServiceRequestOnts where " + sqlWhereString.Replace("{variable}", "Access_Id"));
710: sb.AppendLine("delete from ServiceRequestOnts where " + sqlWhereString.Replace("{variable}", "Id"));
711:
712: sb.AppendLine("delete from Accesses where " + sqlWhereString.Replace("{variable}", "Id"));
713: sb.AppendLine("delete from Accesses where " + sqlWhereString.Replace("{variable}", "Olt"));
714:
715: // for testing
716: //sb = sb.Replace("delete from","select * from");
717:
718: using (var db = new Ia.Ftn.Cl.Db())
719: {
720: db.Database.ExecuteSqlRaw(sb.ToString());
721: }
722: }
723: else
724: {
725: throw new Exception("list.Count <= 40 || list.Count >= 100");
726: }
727: }
728:
729: ////////////////////////////////////////////////////////////////////////////
730:
731: /// <summary>
732: ///
733: /// </summary>
734: public static void DeleteDatabaseRecordsThatReferenceAnUnrelatedForeignKeyBySimilarityOfId()
735: {
736: int fixedLengthOfOntId, fixedLengthOfAccessId;
737: StringBuilder sb;
738:
739: sb = new StringBuilder();
740:
741: /*
742: --delete from OntOntPots where substring(Id,1, 16) not like Ont_Id
743: --delete from OntServiceVoips where substring(Id,1, 16) not like Ont_Id
744: --delete from EmsOntSipInfoes where substring(Id,1, 16) not like EmsOnt_Id
745: --delete from ServiceRequestOnts where substring(Id,1, 16) not like Access_Id
746:
747: --delete from ServiceRequestOntDetails where substring(Id,1, 16) not like ServiceRequestOnt_Id
748: --delete from ServiceRequestOntDetails where ServiceRequestOnt_Id in (select Id from ServiceRequestOnts where substring(Id,1, 16) not like Access_Id)
749: --delete from ServiceRequestOnts where substring(Id,1, 16) not like Access_Id
750: */
751:
752: fixedLengthOfOntId = Ia.Ftn.Cl.Models.Business.Default.FixedLengthOfOntId;
753: fixedLengthOfAccessId = Ia.Ftn.Cl.Models.Business.Access.FixedLengthOfId;
754:
755: if (fixedLengthOfOntId > 10 && fixedLengthOfAccessId > 10)
756: {
757: sb.AppendLine("delete from OntOntPots where substring(Id,1, " + fixedLengthOfOntId + ") not like Ont_Id");
758: sb.AppendLine("delete from OntServiceVoips where substring(Id,1, " + fixedLengthOfOntId + ") not like Ont_Id");
759: sb.AppendLine("delete from EmsOntSipInfoes where substring(Id,1, " + fixedLengthOfOntId + ") not like EmsOnt_Id");
760:
761: sb.AppendLine("delete from ServiceRequestOntDetails where substring(Id,1, 16) not like ServiceRequestOnt_Id");
762: sb.AppendLine("delete from ServiceRequestOntDetails where ServiceRequestOnt_Id in (select Id from ServiceRequestOnts where substring(Id,1, " + fixedLengthOfAccessId + ") not like Access_Id)");
763: sb.AppendLine("delete from ServiceRequestOnts where substring(Id,1, " + fixedLengthOfAccessId + ") not like Access_Id");
764:
765: // for testing
766: //sb = sb.Replace("delete from","select * from");
767:
768: using (var db = new Ia.Ftn.Cl.Db())
769: {
770: db.Database.ExecuteSqlRaw(sb.ToString());
771: }
772: }
773: else
774: {
775: throw new Exception("Ia.Ftn.Cl.Model.Business.Default.FixedLengthOfOntId and/or Ia.Ftn.Cl.Model.Business.Access.FixedLengthOfId is not proper");
776: }
777: }
778:
779: ////////////////////////////////////////////////////////////////////////////
780:
781: /// <summary>
782: ///
783: /// </summary>
784: public static void ConstructDeleteSqlForOracleDatabaseRecordsThatReferenceNonExistantOltsInNdd(out string ontDataSql, out string ontDetailsSql)
785: {
786: string sqlWhereString;
787: List<int> list;
788:
789: list = (from o in Ia.Ftn.Cl.Models.Data.NetworkDesignDocument.OltList select o.Id).ToList();
790:
791: if (list.Count > 40 && list.Count < 100)
792: {
793: if (list.Count > 0)
794: {
795: sqlWhereString = string.Empty;
796:
797: foreach (int i in list) sqlWhereString += "{variable} not like '" + i + "%' and ";
798: sqlWhereString = sqlWhereString.Remove(sqlWhereString.Length - 5, 5);
799:
800: ontDataSql = Ia.Ftn.Cl.Models.Data.ServiceRequestOnt.OracleSqlCommandDeleteServiceRequestOntRecord(sqlWhereString.Replace("{variable}", "ID"));
801:
802: ontDetailsSql = Ia.Ftn.Cl.Models.Data.ServiceRequestOntDetail.OracleSqlCommandDeleteServiceRequestOntDetailRecord(sqlWhereString.Replace("{variable}", "ID"));
803: }
804: else
805: {
806: ontDataSql = ontDetailsSql = string.Empty;
807:
808: throw new Exception("list.Count == 0");
809: }
810: }
811: else
812: {
813: throw new Exception("list.Count <= 40 || list.Count >= 100");
814: }
815: }
816:
817: ////////////////////////////////////////////////////////////////////////////
818:
819: /// <summary>
820: /// Compare OntList with ServiceRequestOntList to extract extra or wrong ONTs from the later
821: /// </summary>
822: private static List<string> ServiceRequestOntItemsThatDoNotExistInNetworkDesignDocumentOntListIdList()
823: {
824: Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Ont ont;
825: List<string> list;
826: List<Ia.Ftn.Cl.Models.ServiceRequestOnt> serviceRequestOntList;
827: Dictionary<string, Ia.Ftn.Cl.Models.Business.NetworkDesignDocument.Ont> ontAccessIdToOntDictionary;
828:
829: list = new List<string>();
830:
831: ontAccessIdToOntDictionary = Ia.Ftn.Cl.Models.Data.NetworkDesignDocument.OntAccessIdToOntDictionary;
832:
833: serviceRequestOntList = Ia.Ftn.Cl.Models.Data.ServiceRequestOnt.List;
834:
835: foreach (Ia.Ftn.Cl.Models.ServiceRequestOnt sro in serviceRequestOntList)
836: {
837: if (ontAccessIdToOntDictionary.ContainsKey(sro.Id))
838: {
839: ont = ontAccessIdToOntDictionary[sro.Id];
840:
841: if (ont.Pon.PonGroup.Symbol == sro.AreaSymbol && ont.Pon.Number == sro.Pon && ont.Number == sro.Ont)
842: {
843: }
844: else
845: {
846: //sb.AppendLine(" wrong:" + w.Id + "'");
847: list.Add(sro.Id);
848: }
849: }
850: else
851: {
852: //sb.AppendLine(" missing: " + w.Id + "'");
853: list.Add(sro.Id);
854: }
855: }
856:
857: return list;
858: }
859:
860: ////////////////////////////////////////////////////////////////////////////
861:
862: /// <summary>
863: ///
864: /// </summary>
865: public static void DeleteFtnDatabaseRecordsAndConstructDeleteSqlForOracleDatabaseRecordsThatReferenceNonExistantOntsInNdd(out string ontDataSql, out string ontDetailsSql)
866: {
867: string sqlWhereString;
868: StringBuilder sb;
869: List<string> list;
870:
871: sb = new StringBuilder();
872:
873: ontDataSql = ontDetailsSql = string.Empty;
874:
875: list = ServiceRequestOntItemsThatDoNotExistInNetworkDesignDocumentOntListIdList();
876:
877: if (list.Count < 2000)
878: {
879: if (list.Count > 0)
880: {
881: DeleteFtnDatabaseRecordsThatReferenceNonExistantOntsInNdd(list);
882:
883: sqlWhereString = string.Empty;
884:
885: foreach (string s in list) sqlWhereString += "{variable} = '" + s + "' or ";
886: sqlWhereString = sqlWhereString.Remove(sqlWhereString.Length - 4, 4);
887:
888: ontDetailsSql = Ia.Ftn.Cl.Models.Data.ServiceRequestOntDetail.OracleSqlCommandDeleteServiceRequestOntDetailRecord(sqlWhereString.Replace("{variable}", "ID"));
889:
890: ontDataSql = Ia.Ftn.Cl.Models.Data.ServiceRequestOnt.OracleSqlCommandDeleteServiceRequestOntRecord(sqlWhereString.Replace("{variable}", "ID"));
891: }
892: else
893: {
894:
895: }
896: }
897: else
898: {
899: throw new Exception("list.Count >=2000");
900: }
901: }
902:
903: ////////////////////////////////////////////////////////////////////////////
904:
905: /// <summary>
906: ///
907: /// </summary>
908: private static void DeleteFtnDatabaseRecordsThatReferenceNonExistantOntsInNdd(List<string> list)
909: {
910: string sqlWhereString;
911: StringBuilder sb;
912:
913: sb = new StringBuilder();
914:
915: if (list.Count > 0)
916: {
917: sqlWhereString = string.Empty;
918:
919: foreach (string s in list) sqlWhereString += "{variable} = '" + s + "' or ";
920: sqlWhereString = sqlWhereString.Remove(sqlWhereString.Length - 4, 4);
921:
922: sb.AppendLine("delete from ServiceRequestOntDetails where " + sqlWhereString.Replace("{variable}", "ServiceRequestOnt_Id"));
923:
924: sb.AppendLine("delete from ServiceRequestOnts where " + sqlWhereString.Replace("{variable}", "Id"));
925:
926: // for testing
927: //sb = sb.Replace("delete from","select * from");
928:
929: using (var db = new Ia.Ftn.Cl.Db())
930: {
931: db.Database.ExecuteSqlRaw(sb.ToString());
932: }
933: }
934: else
935: {
936:
937: }
938: }
939:
940: ////////////////////////////////////////////////////////////////////////////
941:
942: /// <summary>
943: ///
944: /// </summary>
945: public static int NextVacantFlatTermIdForHuaweiEmsOntEquipmentTypeIdAndNokiaGatewayId(Ia.Ftn.Cl.Models.Business.Huawei.Ont.EquipmentType equipmentType, int gatewayId)
946: {
947: int ft;
948: List<int> list;
949:
950: list = Ia.Ftn.Cl.Models.Data.Nokia.AgcfEndpoint.UsedFlatTermIdListForGatewayId(gatewayId);
951:
952: if (list.Count == 0) ft = 1; // this means agcfEndpoint does not exist for any number and the box is empty, and we should create agcfEndpoint at 1
953: else
954: {
955: list = Ia.Cl.Models.Default.ExcludedNumberListFromNumberListWithinRange(list, equipmentType.TelPorts);
956:
957: if (list.Count > 0) ft = list[0];
958: else ft = Ia.Ftn.Cl.Models.Business.Default.PortUndefinedOrInvalidOrUnknown; // something went wrong
959: }
960:
961: return ft;
962: }
963:
964: ////////////////////////////////////////////////////////////////////////////
965: ////////////////////////////////////////////////////////////////////////////
966:
967: /// <summary>
968: ///
969: /// </summary>
970: public static List<Ia.Ftn.Cl.Models.Business.AccessIdNddOntEmsInformation> AccessIdNddOntDevFnSnPnOntIdVaprofForOltSymbolListList(List<string> oltSymbolList)
971: {
972: using (var db = new Ia.Ftn.Cl.Db())
973: {
974: var oltIdList = (from o in Ia.Ftn.Cl.Models.Data.NetworkDesignDocument.OltList
975: where oltSymbolList.Contains(o.Symbol)
976: select o.Id).ToList();
977:
978: var ontAccessIdToOntForOltSymbolListDictionary = Ia.Ftn.Cl.Models.Data.NetworkDesignDocument.OntAccessIdToOntForOltSymbolListDictionary(oltSymbolList);
979:
980: var list = (from a in db.Accesses
981: join eo in db.EmsOnts on a.Id equals eo.Access.Id into eos
982: from eo in eos.DefaultIfEmpty()
983: join ed in db.EmsDevs on eo.DID equals ed.DID into eds
984: from ed in eds.DefaultIfEmpty()
985: where oltIdList.Contains(a.Olt)
986: select new Ia.Ftn.Cl.Models.Business.AccessIdNddOntEmsInformation
987: {
988: AccessId = a.Id,
989: DevFnSnPnOntId = ed.DEV + "-" + eo.FN + "-" + eo.SN + "-" + eo.PN + "-" + eo.ONTID,
990: Vaprof = eo.VAPROF
991: }).Distinct().ToList();
992:
993: foreach (var u in list)
994: {
995: u.Ont = ontAccessIdToOntForOltSymbolListDictionary.ContainsKey(u.AccessId) ? ontAccessIdToOntForOltSymbolListDictionary[u.AccessId] : null;
996: }
997:
998: return list;
999: }
1000: }
1001:
1002: ////////////////////////////////////////////////////////////////////////////
1003:
1004: /// <summary>
1005: ///
1006: /// </summary>
1007: public static List<Ia.Ftn.Cl.Models.Business.AccessIdNddOntEmsInformation> AccessIdNddOntDevFnSnPnOntIdVaprofWhereVaprofIsNotAluSipBForOltSymbolListList(List<string> oltSymbolList)
1008: {
1009: List<Ia.Ftn.Cl.Models.Business.AccessIdNddOntEmsInformation> list;
1010:
1011: var _list = AccessIdNddOntDevFnSnPnOntIdVaprofForOltSymbolListList(oltSymbolList);
1012:
1013: list = (from l in _list where l.Ont != null && l.Vaprof != "ALU-SIP-B-MS" select l).ToList();
1014:
1015: return list;
1016: }
1017:
1018: ////////////////////////////////////////////////////////////////////////////
1019:
1020: /// <summary>
1021: ///
1022: /// </summary>
1023: public static List<Ia.Ftn.Cl.Models.Business.AccessIdNddOntEmsInformation> DistinctNddOntWhereVaprofIsNotAluSipBAndIgnoreMduForOltSymbolListList(List<string> oltSymbolList)
1024: {
1025: // I will ignore MDU because they have to be converted to SIP manually by Huawei
1026:
1027: List<Ia.Ftn.Cl.Models.Business.AccessIdNddOntEmsInformation> list, list2;
1028:
1029: var _list = AccessIdNddOntEmsOntiIdDevFnSnPnVaprofEquipmentIdFamilTypeSipInfoTelVoipPstnUserPnVagProtocolTypeServicePortAgcfGatewayRecordIpSubpartyPuidceProfileNumberForOltSymbolListList(oltSymbolList);
1030:
1031: list = (from l in _list
1032: where l.Ont != null && l.Vaprof != "ALU-SIP-B-MS" && l.EmsOntFamilyType != Ia.Ftn.Cl.Models.Business.Huawei.Ont.FamilyType.Mdu
1033: select l).ToList();
1034:
1035: list2 = new List<Ia.Ftn.Cl.Models.Business.AccessIdNddOntEmsInformation>(list.Count);
1036:
1037: list2 = (from l in list select new Ia.Ftn.Cl.Models.Business.AccessIdNddOntEmsInformation { Ont = l.Ont }).Distinct().ToList();
1038:
1039: return list2;
1040: }
1041:
1042: ////////////////////////////////////////////////////////////////////////////
1043:
1044: /// <summary>
1045: ///
1046: /// </summary>
1047: public static List<Ia.Ftn.Cl.Models.Business.AccessIdNddOntEmsInformation> ServiceAndNddOntAndEmsOntFamilyTypeAndPortWhereAgcfEndpointPortIsNot0AndVaprofIsAluSipBAndSfuEmsOntSipInfoTelDoesNotExistOrMduEmsVagIsSipAndMduEmsVoipPstnUserPnDoesNotExistForOltSymbolListList(List<string> oltSymbolList)
1048: {
1049: List<Ia.Ftn.Cl.Models.Business.AccessIdNddOntEmsInformation> list;
1050:
1051: var _list = AccessIdNddOntEmsOntiIdDevFnSnPnVaprofEquipmentIdFamilTypeSipInfoTelVoipPstnUserPnVagProtocolTypeServicePortAgcfGatewayRecordIpSubpartyPuidceProfileNumberForOltSymbolListList(oltSymbolList);
1052:
1053: list = (from l in _list
1054: where l.Ont != null && l.Port != Ia.Ftn.Cl.Models.Business.Default.PortUndefinedOrInvalidOrUnknown // meaning AgcfEndpoints is not null and Port = ep.FlatTermID
1055: &&
1056: (
1057: l.EmsOntFamilyType == Ia.Ftn.Cl.Models.Business.Huawei.Ont.FamilyType.Sfu && l.Vaprof == "ALU-SIP-B-MS" && l.EmsOntSipInfoTel == Ia.Ftn.Cl.Models.Business.Default.PortUndefinedOrInvalidOrUnknown
1058: ||
1059: l.EmsOntFamilyType == Ia.Ftn.Cl.Models.Business.Huawei.Ont.FamilyType.Mdu && l.EmsVagProtocolType == "SIP" && l.EmsVoipPstnUserPn == Ia.Ftn.Cl.Models.Business.Default.PortUndefinedOrInvalidOrUnknown
1060: )
1061: select l).ToList();
1062:
1063: return list;
1064: }
1065:
1066: ////////////////////////////////////////////////////////////////////////////
1067:
1068: /// <summary>
1069: ///
1070: /// </summary>
1071: public static List<string> AccessNameWhereVaprofIsNotAluSipBForOltSymbolListList(List<string> oltSymbolList)
1072: {
1073: List<string> list;
1074:
1075: var list0 = AccessIdNddOntDevFnSnPnOntIdVaprofWhereVaprofIsNotAluSipBForOltSymbolListList(oltSymbolList);
1076:
1077: list = (from l in list0 select l.Ont.Access.Name).ToList();
1078:
1079: return list;
1080: }
1081:
1082: ////////////////////////////////////////////////////////////////////////////
1083:
1084: /// <summary>
1085: ///
1086: /// </summary>
1087: public static List<Ia.Ftn.Cl.Models.Business.AccessIdNddOntEmsInformation> AccessIdNddOntEmsOntiIdDevFnSnPnVaprofEquipmentIdFamilTypeSipInfoTelVoipPstnUserPnVagProtocolTypeServicePortAgcfGatewayRecordIpSubpartyPuidceProfileNumberForOltSymbolListList(List<string> oltSymbolList)
1088: {
1089: using (var db = new Ia.Ftn.Cl.Db())
1090: {
1091: var oltIdList = (from o in Ia.Ftn.Cl.Models.Data.NetworkDesignDocument.OltList
1092: where oltSymbolList.Contains(o.Symbol)
1093: select o.Id).ToList();
1094:
1095: var ontAccessIdToOntForOltSymbolListDictionary = Ia.Ftn.Cl.Models.Data.NetworkDesignDocument.OntAccessIdToOntForOltSymbolListDictionary(oltSymbolList);
1096:
1097: var list = (from a in db.Accesses
1098: join se in db.Service2 on a.Id equals se.Access.Id
1099: join sp in db.SubParties on se.Service equals sp.DisplayName
1100:
1101: join ep in db.AgcfEndpoints on sp.PartyId equals ep.Dn into eps
1102: from ep in eps.DefaultIfEmpty()
1103:
1104: join gr in db.AgcfGatewayRecords on ep.AgcfGatewayRecord.Id equals gr.Id into grs
1105: from gr in grs.DefaultIfEmpty()
1106:
1107: join eo in db.EmsOnts on a.Id equals eo.Access.Id into eos
1108: from eo in eos.DefaultIfEmpty()
1109:
1110: join ed in db.EmsDevs on eo.DID equals ed.DID into eds
1111: from ed in eds.DefaultIfEmpty()
1112:
1113: join eosi in db.EmsOntSipInfoes on eo.Id equals eosi.EmsOnt.Id into eosis
1114: from eosi in eosis.DefaultIfEmpty()
1115:
1116: join evpu in db.EmsVoipPstnUsers on eo.Id equals evpu.EmsOnt.Id into evpus
1117: from evpu in evpus.DefaultIfEmpty()
1118:
1119: join ev in db.EmsVags on eo.Id equals ev.EmsOnt.Id into evs
1120: from ev in evs.DefaultIfEmpty()
1121:
1122: where oltIdList.Contains(a.Olt) && ((eosi == null && evpu == null) || (eosi != null && eosi.SIPNAME.Contains(se.Service)) || (evpu != null && evpu.DN.Contains(se.Service) && ev != null))
1123:
1124: select new Ia.Ftn.Cl.Models.Business.AccessIdNddOntEmsInformation
1125: {
1126: AccessId = a.Id,
1127: DevFnSnPnOntId = ed.DEV + "-" + eo.FN + "-" + eo.SN + "-" + eo.PN + "-" + eo.ONTID,
1128: Vaprof = eo.VAPROF,
1129: EquipmentId = eo.EQUIPMENTID,
1130: EmsOntSipInfoTel = eosi == null ? Ia.Ftn.Cl.Models.Business.Default.PortUndefinedOrInvalidOrUnknown : eosi.TEL,
1131: EmsVoipPstnUserPn = evpu == null ? Ia.Ftn.Cl.Models.Business.Default.PortUndefinedOrInvalidOrUnknown : evpu.PN,
1132: EmsVagProtocolType = ev == null ? string.Empty : ev.PROTOCOLTYPE,
1133: AgcfGatewayRecordIp = gr == null ? string.Empty : gr.IP1,
1134: Service = se.Service,
1135: Port = ep == null ? Ia.Ftn.Cl.Models.Business.Default.PortUndefinedOrInvalidOrUnknown : ep.FlatTermID,
1136: PrimaryPuidcpeProfileNumber = sp.PrimaryPUIDCPEProfileNumber
1137: }).AsNoTracking().ToList();
1138:
1139: foreach (var u in list)
1140: {
1141: u.Ont = ontAccessIdToOntForOltSymbolListDictionary.ContainsKey(u.AccessId) ? ontAccessIdToOntForOltSymbolListDictionary[u.AccessId] : null;
1142:
1143: u.EmsOntFamilyType = (from e in Ia.Ftn.Cl.Models.Business.Huawei.Ont.EquipmentTypeList where e.SystemNameList.Contains(u.EquipmentId) select e.FamilyType).Single();
1144: }
1145:
1146: return list;
1147: }
1148: }
1149:
1150: ////////////////////////////////////////////////////////////////////////////
1151:
1152: /// <summary>
1153: ///
1154: /// </summary>
1155: public static List<Ia.Ftn.Cl.Models.Business.AccessIdNddOntEmsInformation> AccessIdNddOntDevFnSnPnOntIdVaprofOntIpServicePortPrimaryPuidcpeProfileNumberWhereVaprofIsNotAluSipBForOltSymbolListList(List<string> oltSymbolList)
1156: {
1157: List<Ia.Ftn.Cl.Models.Business.AccessIdNddOntEmsInformation> list;
1158:
1159: var list0 = AccessIdNddOntEmsOntiIdDevFnSnPnVaprofEquipmentIdFamilTypeSipInfoTelVoipPstnUserPnVagProtocolTypeServicePortAgcfGatewayRecordIpSubpartyPuidceProfileNumberForOltSymbolListList(oltSymbolList);
1160:
1161: list = (from l in list0 where l.Vaprof != "ALU-SIP-B-MS" select l).ToList();
1162:
1163: return list;
1164: }
1165:
1166: ////////////////////////////////////////////////////////////////////////////
1167:
1168: /// <summary>
1169: ///
1170: /// </summary>
1171: public static List<Ia.Ftn.Cl.Models.Business.ServiceNddOntAccessName> ServiceAndAccessNameWherePrimaryPuidcpeProfileNumberIsNot10ForOltSymbolListList(List<string> oltSymbolList)
1172: {
1173: List<Ia.Ftn.Cl.Models.Business.ServiceNddOntAccessName> list;
1174:
1175: var list0 = AccessIdNddOntEmsOntiIdDevFnSnPnVaprofEquipmentIdFamilTypeSipInfoTelVoipPstnUserPnVagProtocolTypeServicePortAgcfGatewayRecordIpSubpartyPuidceProfileNumberForOltSymbolListList(oltSymbolList);
1176:
1177: list = (from l in list0
1178: where l.PrimaryPuidcpeProfileNumber != Ia.Ftn.Cl.Models.Business.Nokia.Ims.PrimaryPUIDCPEProfileNumberForSip
1179: select new Ia.Ftn.Cl.Models.Business.ServiceNddOntAccessName { Service = l.Service, AccessName = l.Ont.Access.Name }).ToList();
1180:
1181: return list;
1182: }
1183:
1184: ////////////////////////////////////////////////////////////////////////////
1185:
1186: /// <summary>
1187: ///
1188: /// </summary>
1189: public static List<Ia.Ftn.Cl.Models.Business.ServiceNddOntAccessName> ServiceAndAccessNameWherePrimaryPuidcpeProfileNumberIsNot10AndEmsOntVaprofIsAluSipBForOltSymbolListList(List<string> oltSymbolList)
1190: {
1191: List<Ia.Ftn.Cl.Models.Business.ServiceNddOntAccessName> list;
1192:
1193: var list0 = AccessIdNddOntEmsOntiIdDevFnSnPnVaprofEquipmentIdFamilTypeSipInfoTelVoipPstnUserPnVagProtocolTypeServicePortAgcfGatewayRecordIpSubpartyPuidceProfileNumberForOltSymbolListList(oltSymbolList);
1194:
1195: list = (from l in list0
1196: where l.Vaprof == "ALU-SIP-B-MS" && l.PrimaryPuidcpeProfileNumber != Ia.Ftn.Cl.Models.Business.Nokia.Ims.PrimaryPUIDCPEProfileNumberForSip
1197: select new Ia.Ftn.Cl.Models.Business.ServiceNddOntAccessName { Service = l.Service, AccessName = l.Ont.Access.Name }).ToList();
1198:
1199: return list;
1200: }
1201:
1202: ////////////////////////////////////////////////////////////////////////////
1203:
1204: /// <summary>
1205: ///
1206: /// </summary>
1207: public static List<Ia.Ftn.Cl.Models.Business.ServiceNddOntAccessName> ServiceAndNddOntWherePrimaryPuidcpeProfileNumberIsNot10AndEmsOntVaprofIsAluSipBForOltSymbolListList(List<string> oltSymbolList)
1208: {
1209: List<Ia.Ftn.Cl.Models.Business.ServiceNddOntAccessName> list;
1210:
1211: var list0 = AccessIdNddOntEmsOntiIdDevFnSnPnVaprofEquipmentIdFamilTypeSipInfoTelVoipPstnUserPnVagProtocolTypeServicePortAgcfGatewayRecordIpSubpartyPuidceProfileNumberForOltSymbolListList(oltSymbolList);
1212:
1213: list = (from l in list0
1214: where l.Vaprof == "ALU-SIP-B-MS" && l.PrimaryPuidcpeProfileNumber != Ia.Ftn.Cl.Models.Business.Nokia.Ims.PrimaryPUIDCPEProfileNumberForSip
1215: select new Ia.Ftn.Cl.Models.Business.ServiceNddOntAccessName { Service = l.Service, Ont = l.Ont, AccessName = l.Ont.Access.Name }).ToList();
1216:
1217: return list;
1218: }
1219:
1220: ////////////////////////////////////////////////////////////////////////////
1221:
1222: /// <summary>
1223: ///
1224: /// </summary>
1225: public static List<Ia.Ftn.Cl.Models.Business.ServiceNddOntAccessName> ServiceAndNddOntWherePrimaryPuidcpeProfileNumberIsNot10AndEmsOntVaprofIsAluSipBAndSfuEmsOntSipInfoTelExistsOrAndMduEmsOntVagIsSipAndMduEmsVoipPstnUserPnExistsForOltSymbolListList(List<string> oltSymbolList)
1226: {
1227: List<Ia.Ftn.Cl.Models.Business.ServiceNddOntAccessName> list;
1228:
1229: var list0 = AccessIdNddOntEmsOntiIdDevFnSnPnVaprofEquipmentIdFamilTypeSipInfoTelVoipPstnUserPnVagProtocolTypeServicePortAgcfGatewayRecordIpSubpartyPuidceProfileNumberForOltSymbolListList(oltSymbolList);
1230:
1231: list = (from l in list0
1232: where
1233: l.PrimaryPuidcpeProfileNumber != Ia.Ftn.Cl.Models.Business.Nokia.Ims.PrimaryPUIDCPEProfileNumberForSip &&
1234: (
1235: l.EmsOntFamilyType == Ia.Ftn.Cl.Models.Business.Huawei.Ont.FamilyType.Sfu && l.Vaprof == "ALU-SIP-B-MS" && l.EmsOntSipInfoTel != Ia.Ftn.Cl.Models.Business.Default.PortUndefinedOrInvalidOrUnknown
1236: ||
1237: l.EmsOntFamilyType == Ia.Ftn.Cl.Models.Business.Huawei.Ont.FamilyType.Mdu && l.EmsVagProtocolType == "SIP" && l.EmsVoipPstnUserPn != Ia.Ftn.Cl.Models.Business.Default.PortUndefinedOrInvalidOrUnknown
1238: )
1239: select new Ia.Ftn.Cl.Models.Business.ServiceNddOntAccessName { Service = l.Service, Ont = l.Ont, AccessName = l.Ont.Access.Name }).ToList();
1240:
1241: return list;
1242: }
1243:
1244: ////////////////////////////////////////////////////////////////////////////
1245:
1246: /// <summary>
1247: ///
1248: /// </summary>
1249: public static Dictionary<string, int> RouterNameToServiceCountInNokiaRouterHuaweiAccessOltDictionary()
1250: {
1251: var oltIdToCountOfServiceDictionary = Ia.Ftn.Cl.Models.Data.Default.OltIdToCountOfServiceDictionary();
1252:
1253: var nokiaRouterHuaweiAccessOltIdList = Ia.Ftn.Cl.Models.Data.NetworkDesignDocument.NokiaRouterHuaweiAccessOltIdList;
1254:
1255: var nokiaRouterHuaweiAccessRouterList = (from o in Ia.Ftn.Cl.Models.Data.NetworkDesignDocument.OltList
1256: where nokiaRouterHuaweiAccessOltIdList.Contains(o.Id)
1257: select o.Odf.Router).Distinct().ToList();
1258:
1259:
1260: var dictionary = new Dictionary<string, int>();
1261:
1262: foreach (var r in nokiaRouterHuaweiAccessRouterList)
1263: {
1264: var nameType = r.Name + " (" + r.Type + ")";
1265:
1266: if (!dictionary.ContainsKey(nameType)) dictionary[nameType] = 0;
1267:
1268: foreach (var o in r.Odfs.SelectMany(u => u.Olts))
1269: {
1270: if (o.Odf.Router.Id == r.Id)
1271: {
1272: if (oltIdToCountOfServiceDictionary.ContainsKey(o.Id))
1273: {
1274: dictionary[nameType] += oltIdToCountOfServiceDictionary[o.Id];
1275: }
1276: }
1277: }
1278: }
1279:
1280: return dictionary;
1281: }
1282:
1283: ////////////////////////////////////////////////////////////////////////////
1284:
1285: /// <summary>
1286: ///
1287: /// </summary>
1288: public static Dictionary<string, int> NokiaOltToServiceCountDictionary()
1289: {
1290: var oltIdToCountOfServiceDictionary = Ia.Ftn.Cl.Models.Data.Default.OltIdToCountOfServiceDictionary();
1291:
1292: var oltList = Ia.Ftn.Cl.Models.Data.NetworkDesignDocument.NokiaOltList;
1293:
1294: var dictionary = new Dictionary<string, int>();
1295:
1296: foreach (var o in oltList)
1297: {
1298: var nameType = o.Name + " (" + o.EmsName + ")";
1299:
1300: if (!dictionary.ContainsKey(nameType)) dictionary[nameType] = 0;
1301:
1302: if (oltIdToCountOfServiceDictionary.ContainsKey(o.Id))
1303: {
1304: dictionary[nameType] += oltIdToCountOfServiceDictionary[o.Id];
1305: }
1306: }
1307:
1308: return dictionary;
1309: }
1310:
1311: ////////////////////////////////////////////////////////////////////////////
1312:
1313: /// <summary>
1314: ///
1315: /// </summary>
1316: public static Dictionary<string, int> HuaweiOltToServiceCountDictionary()
1317: {
1318: var oltIdToCountOfServiceDictionary = Ia.Ftn.Cl.Models.Data.Default.OltIdToCountOfServiceDictionary();
1319:
1320: var oltList = Ia.Ftn.Cl.Models.Data.NetworkDesignDocument.HuaweiOltList;
1321:
1322: var dictionary = new Dictionary<string, int>();
1323:
1324: foreach (var o in oltList)
1325: {
1326: var nameType = o.Name + " (" + o.EmsName + ")";
1327:
1328: if (!dictionary.ContainsKey(nameType)) dictionary[nameType] = 0;
1329:
1330: if (oltIdToCountOfServiceDictionary.ContainsKey(o.Id))
1331: {
1332: dictionary[nameType] += oltIdToCountOfServiceDictionary[o.Id];
1333: }
1334: }
1335:
1336: return dictionary;
1337: }
1338:
1339: ////////////////////////////////////////////////////////////////////////////
1340:
1341: /// <summary>
1342: ///
1343: /// </summary>
1344: public static Dictionary<int, int> OltIdToCountOfServiceDictionary()
1345: {
1346: var dictionary = new Dictionary<int, int>();
1347:
1348: using (var db = new Ia.Ftn.Cl.Db())
1349: {
1350: /*
1351: select a.Olt, count(s.Service)
1352: from Service2 s
1353: left outer join Accesses a on a.Id = s.Access_Id
1354: where a.Olt is not null
1355: group by a.Olt
1356: */
1357:
1358: dictionary = (from s in db.Service2
1359: join a in db.Accesses on s.Access.Id equals a.Id
1360: where a != null
1361: group a.Olt by a.Olt into g
1362: select new { OltId = g.Key, ServiceCount = g.Count() }).AsNoTracking().ToDictionary(t => t.OltId, t => t.ServiceCount);
1363: }
1364:
1365: return dictionary;
1366: }
1367:
1368: ////////////////////////////////////////////////////////////////////////////
1369:
1370: /// <summary>
1371: ///
1372: /// </summary>
1373: public static Dictionary<int, int> MsanDidToMsanServiceCountDictionary()
1374: {
1375: var dictionary = new Dictionary<int, int>();
1376:
1377: using (var db = new Ia.Ftn.Cl.Db())
1378: {
1379: #if DEBUG
1380: var dummyVarToDrawRefractorToBelow = Ia.Ftn.Cl.Models.Business.NumberFormatConverter.Dn("0000000");
1381: #endif
1382:
1383: dictionary = (from s in db.Service2
1384: join evpu in db.EmsVoipPstnUsers on "+965" + s.Service equals evpu.DN
1385: where evpu.DN.StartsWith("+965") // see: Ia.Ftn.Cl.Model.Business.NumberFormatConverter.Dn()
1386: group evpu.DID by evpu.DID into g
1387: select new { Did = g.Key, ServiceCount = g.Count() }).AsNoTracking().ToDictionary(t => t.Did, t => t.ServiceCount);
1388: }
1389:
1390: return dictionary;
1391: }
1392:
1393: ////////////////////////////////////////////////////////////////////////////
1394:
1395: /// <summary>
1396: ///
1397: /// </summary>
1398: public static Dictionary<int, int> MsanDidToEmsVoipPstnUsersMsanServiceCountDictionary()
1399: {
1400: var dictionary = new Dictionary<int, int>();
1401:
1402: using (var db = new Ia.Ftn.Cl.Db())
1403: {
1404: #if DEBUG
1405: var dummyVarToDrawRefractorToBelow = Ia.Ftn.Cl.Models.Business.NumberFormatConverter.Dn("0000000");
1406: #endif
1407:
1408: dictionary = (from evpu in db.EmsVoipPstnUsers
1409: where evpu.DN.StartsWith("+965") // see: Ia.Ftn.Cl.Model.Business.NumberFormatConverter.Dn()
1410: group evpu.DID by evpu.DID into g
1411: select new { Did = g.Key, ServiceCount = g.Count() }).AsNoTracking().ToDictionary(t => t.Did, t => t.ServiceCount);
1412: }
1413:
1414: return dictionary;
1415: }
1416:
1417: ////////////////////////////////////////////////////////////////////////////
1418:
1419: /// <summary>
1420: ///
1421: /// </summary>
1422: public static int MaximumOntTelPorts
1423: {
1424: get
1425: {
1426: var maxNokiaTelPort = Ia.Ftn.Cl.Models.Business.Nokia.Ont.EquipmentTypeList.Max(u => u.TelPorts);
1427: var maxHuaweiTelPort = Ia.Ftn.Cl.Models.Business.Huawei.Ont.EquipmentTypeList.Max(u => u.TelPorts);
1428:
1429: var maxTelPort = Math.Max(maxNokiaTelPort, maxHuaweiTelPort);
1430:
1431: return maxTelPort;
1432: }
1433: }
1434:
1435: ////////////////////////////////////////////////////////////////////////////
1436:
1437: /// <summary>
1438: ///
1439: /// </summary>
1440: public static StringBuilder Log()
1441: {
1442: return logStringBuilder;
1443: }
1444:
1445: ////////////////////////////////////////////////////////////////////////////
1446:
1447: /// <summary>
1448: ///
1449: /// </summary>
1450: public static void Log(string line)
1451: {
1452: var s = DateTime.UtcNow.AddHours(3).ToString("yyyy-MM-dd HH:mm") + ": " + line;
1453:
1454: logStringBuilder.AppendLine(s);
1455: }
1456:
1457: ////////////////////////////////////////////////////////////////////////////
1458:
1459: /// <summary>
1460: ///
1461: /// </summary>
1462: public static void InitializeApplicationLists()
1463: {
1464: //_ = Ia.Ftn.Cl.Model.Data.NetworkDesignDocument.OntList; useless because this is not saved in SQL database where its accessable in other appliciations
1465: _ = Ia.Ftn.Cl.Models.Data.ServiceRequest.AccessNameToServiceListWithinAllowedToBeMigratedOltDictionary;
1466: _ = Ia.Ftn.Cl.Models.Data.ServiceRequest.DbNameToServiceListDictionary;
1467: _ = Ia.Ftn.Cl.Models.Data.Ims.NokiaAccessNameWithPbxList;
1468: }
1469:
1470: ////////////////////////////////////////////////////////////////////////////
1471: ////////////////////////////////////////////////////////////////////////////
1472: }
1473: }
- 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) :