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

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

Configuration Framework class for Fixed Telecommunications Network (FTN) business model.

    1: using System.Linq;
    2:  
    3: namespace Ia.Ftn.Cl.Models.Business
    4: {
    5:     ////////////////////////////////////////////////////////////////////////////
    6:  
    7:     /// <summary publish="true">
    8:     /// Configuration Framework class for Fixed Telecommunications Network (FTN) business model.
    9:     /// </summary>
   10:     /// 
   11:     /// <remarks> 
   12:     /// Copyright © 2006-2021 Jasem Y. Al-Shamlan (info@ia.com.kw), Integrated Applications - Kuwait. All Rights Reserved.
   13:     /// </remarks> 
   14:     public class Configuration
   15:     {
   16:         ////////////////////////////////////////////////////////////////////////////
   17:  
   18:         /// <summary>
   19:         ///
   20:         /// </summary>
   21:         public Configuration() { }
   22:  
   23:         /// <summary/>
   24:         public bool MigrationIsSuspended { get; set; }
   25:  
   26:         ////////////////////////////////////////////////////////////////////////////
   27:  
   28:         /// <summary>
   29:         ///
   30:         /// </summary>
   31:         public void Write()
   32:         {
   33:             //Ia.Cl.Models.Db.MessageQueue.Write<Ia.Ftn.Cl.Model.Business.Configuration>(name, this);
   34:         }
   35:  
   36:         ////////////////////////////////////////////////////////////////////////////
   37:  
   38:         /// <summary>
   39:         ///
   40:         /// </summary>
   41:         public void Read()
   42:         {
   43:             /*
   44:             var c = Ia.Cl.Models.Db.MessageQueue.Read<Ia.Ftn.Cl.Model.Business.Configuration>(name);
   45: 
   46:             if (c != null)
   47:             {
   48:                 this.MigrationIsSuspended = c.MigrationIsSuspended;
   49:             }
   50:             else
   51:             {
   52: 
   53:             }
   54:             */
   55:         }
   56:  
   57:         ////////////////////////////////////////////////////////////////////////////
   58:     }
   59:  
   60:     ////////////////////////////////////////////////////////////////////////////
   61:     ////////////////////////////////////////////////////////////////////////////
   62: }