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

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

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

    1:  
    2: namespace Ia.Ftn.Cl.Models.Business
    3: {
    4:     ////////////////////////////////////////////////////////////////////////////
    5:  
    6:     /// <summary publish="true">
    7:     /// AccessCapacity support class for Fixed Telecommunications Network (FTN) business model.
    8:     /// </summary>
    9:     /// 
   10:     /// <remarks> 
   11:     /// Copyright © 2019-2020 Jasem Y. Al-Shamlan (info@ia.com.kw), Integrated Applications - Kuwait. All Rights Reserved.
   12:     /// </remarks> 
   13:     public sealed class AccessCapacity
   14:     {
   15:         /// <summary/>
   16:         public AccessCapacity() { }
   17:  
   18:         /// <summary/>
   19:         public string AccessId { get; set; }
   20:  
   21:         /// <summary/>
   22:         public int PossibleNumberOfTd { get; set; }
   23:  
   24:         /// <summary/>
   25:         public int PossibleNumberOfEthernet { get; set; }
   26:  
   27:         /// <summary/>
   28:         public string FamilyTypeCapacityString { get; set; }
   29:     }
   30:  
   31:     ////////////////////////////////////////////////////////////////////////////
   32:     ////////////////////////////////////////////////////////////////////////////
   33: }