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

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

Service Request Ont Detail support class of Fixed Telecommunications Network (FTN) business model.

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