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

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

ONT-SERVICEVOIP support class of Fixed Telecommunications Network (FTN) Nokia business model.

    1: namespace Ia.Ftn.Cl.Models.Business.Nokia
    2: {
    3:     ////////////////////////////////////////////////////////////////////////////
    4:  
    5:     /// <summary publish="true">
    6:     /// ONT-SERVICEVOIP support class of Fixed Telecommunications Network (FTN) Nokia business model.
    7:     /// </summary>
    8:     /// 
    9:     /// <remarks> 
   10:     /// Copyright © 2006-2017 Jasem Y. Al-Shamlan (info@ia.com.kw), Integrated Applications - Kuwait. All Rights Reserved.
   11:     /// </remarks> 
   12:     public class OntServiceVoip
   13:     {
   14:         /// <summary/>
   15:         public OntServiceVoip() { }
   16:  
   17:         ////////////////////////////////////////////////////////////////////////////
   18:  
   19:         /// <summary>
   20:         ///
   21:         /// </summary>
   22:         public static string OntServiceVoipId(string ontId, int card)
   23:         {
   24:             string id;
   25:  
   26:             id = ontId + card.ToString().PadLeft(2, '0');
   27:  
   28:             return id;
   29:         }
   30:  
   31:         ////////////////////////////////////////////////////////////////////////////
   32:         ////////////////////////////////////////////////////////////////////////////
   33:     }
   34:  
   35:     ////////////////////////////////////////////////////////////////////////////
   36:     ////////////////////////////////////////////////////////////////////////////
   37: }