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

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

EWSD Subscriber Entity Framework class for Fixed Telecommunications Network (FTN) UI model.

    1: using System;
    2:  
    3: namespace Ia.Ftn.Cl.Models.Ui.Siemens
    4: {
    5:     ////////////////////////////////////////////////////////////////////////////
    6:  
    7:     /// <summary publish="true">
    8:     /// EWSD Subscriber Entity Framework class for Fixed Telecommunications Network (FTN) UI model.
    9:     /// </summary>
   10:     /// 
   11:     /// <remarks> 
   12:     /// Copyright � 2019-2020 Jasem Y. Al-Shamlan (info@ia.com.kw), Integrated Applications - Kuwait. All Rights Reserved.
   13:     /// </remarks> 
   14:     public class Subscriber
   15:     {
   16:         /// <summary/>
   17:         public Subscriber() { }
   18:  
   19:         /// <summary/>
   20:         public string Id { get; set; }
   21:  
   22:         /// <summary/>
   23:         public int DN { get; set; }
   24:  
   25:         /// <summary/>
   26:         public string LAC { get; set; }
   27:  
   28:         /// <summary/>
   29:         public string EQN { get; set; }
   30:  
   31:         /// <summary/>
   32:         public string CAT { get; set; }
   33:  
   34:         /// <summary/>
   35:         public string LTT { get; set; }
   36:  
   37:         /// <summary/>
   38:         public string OPTRCL { get; set; }
   39:  
   40:         /// <summary/>
   41:         public string SUBTRCL { get; set; }
   42:  
   43:         /// <summary/>
   44:         public string NUMCAL { get; set; }
   45:  
   46:         /// <summary/>
   47:         public string ORIG1 { get; set; }
   48:  
   49:         /// <summary/>
   50:         public string TRARSTR { get; set; }
   51:  
   52:         /// <summary/>
   53:         public string LNATT { get; set; }
   54:  
   55:         /// <summary/>
   56:         public string DIV { get; set; }
   57:  
   58:         /// <summary/>
   59:         public string COS { get; set; }
   60:  
   61:         /// <summary/>
   62:         public string ADDINF { get; set; }
   63:  
   64:         /// <summary/>
   65:         public string NUMBCH { get; set; }
   66:  
   67:         /// <summary/>
   68:         public string CTDIVI { get; set; }
   69:  
   70:         /// <summary/>
   71:         public string BLK { get; set; }
   72:  
   73:         /// <summary/>
   74:         public string Content { get; set; }
   75:  
   76:         /// <summary/>
   77:         public DateTime Created { get; set; }
   78:  
   79:         /// <summary/>
   80:         public DateTime Updated { get; set; }
   81:  
   82:         ////////////////////////////////////////////////////////////////////////////
   83:         ////////////////////////////////////////////////////////////////////////////
   84:  
   85:         /// <summary>
   86:         ///
   87:         /// </summary>
   88:         public string ToSimpleTextString()
   89:         {
   90:             return string.Empty; // Ia.Ftn.Cl.Model.Data.Siemens.Subscriber.ToSimpleTextString(this);
   91:         }
   92:  
   93:         ////////////////////////////////////////////////////////////////////////////
   94:         ////////////////////////////////////////////////////////////////////////////
   95:     }
   96:  
   97:     ////////////////////////////////////////////////////////////////////////////
   98:     ////////////////////////////////////////////////////////////////////////////
   99: }