)>}]
شركة التطبيقات المتكاملة لتصميم وبرمجة البرمجيات الخاصة ش.ش.و.
Integrated Applications Programming Company
Home » Code Library » Subscriber (Ia.Ftn.Cl.Models.Business.Siemens)

Public general use code classes and xml files that we've compiled and used over the years:

EWSD Subscriber support class for Fixed Telecommunications Network (FTN) business model.

    1: using System.Collections.Generic;
    2:  
    3: namespace Ia.Ftn.Cl.Models.Business.Siemens
    4: {
    5:     ////////////////////////////////////////////////////////////////////////////
    6:  
    7:     /// <summary publish="true">
    8:     /// EWSD Subscriber support class for Fixed Telecommunications Network (FTN) business model.
    9:     /// </summary>
   10:     /// 
   11:     /// <remarks> 
   12:     /// Copyright © 2018-2020 Jasem Y. Al-Shamlan (info@ia.com.kw), Integrated Applications - Kuwait. All Rights Reserved.
   13:     /// </remarks> 
   14:     public class Subscriber
   15:     {
   16:         ////////////////////////////////////////////////////////////////////////////
   17:  
   18:         /// <summary>
   19:         ///
   20:         /// </summary>
   21:         public Subscriber() { }
   22:  
   23:         ////////////////////////////////////////////////////////////////////////////
   24:  
   25:         /// <summary>
   26:         ///
   27:         /// </summary>
   28:         public static string SubscriberId(int dn)
   29:         {
   30:             int serviceType;
   31:             string serviceId;
   32:  
   33:             serviceType = Ia.Ftn.Cl.Models.Business.Service.ServiceType.PstnService;
   34:  
   35:             serviceId = Ia.Ftn.Cl.Models.Business.Service.ServiceToServiceId(dn.ToString(), serviceType);
   36:  
   37:             return serviceId;
   38:         }
   39:  
   40:         ////////////////////////////////////////////////////////////////////////////
   41:         ////////////////////////////////////////////////////////////////////////////
   42:     }
   43:  
   44:     ////////////////////////////////////////////////////////////////////////////
   45:     ////////////////////////////////////////////////////////////////////////////
   46: }