)>}]
شركة التطبيقات المتكاملة لتصميم وبرمجة البرمجيات الخاصة ش.ش.و.
Integrated Applications Programming Company
Home » Code Library » Subscriber (Ia.Ftn.Cl.Model.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.Model.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:     ///
   14:     /// This library is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by
   15:     /// the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
   16:     ///
   17:     /// This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
   18:     /// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
   19:     /// 
   20:     /// You should have received a copy of the GNU General Public License along with this library. If not, see http://www.gnu.org/licenses.
   21:     /// 
   22:     /// Copyright notice: This notice may not be removed or altered from any source distribution.
   23:     /// </remarks> 
   24:     public class Subscriber
   25:     {
   26:         /// <summary/>
   27:         public Subscriber() { }
   28:  
   29:         /// <summary/>
   30:         public string Id { get; set; }
   31:  
   32:         /// <summary/>
   33:         public int DN { get; set; }
   34:  
   35:         /// <summary/>
   36:         public string LAC { get; set; }
   37:  
   38:         /// <summary/>
   39:         public string EQN { get; set; }
   40:  
   41:         /// <summary/>
   42:         public string CAT { get; set; }
   43:  
   44:         /// <summary/>
   45:         public string LTT { get; set; }
   46:  
   47:         /// <summary/>
   48:         public string OPTRCL { get; set; }
   49:  
   50:         /// <summary/>
   51:         public string SUBTRCL { get; set; }
   52:  
   53:         /// <summary/>
   54:         public string NUMCAL { get; set; }
   55:  
   56:         /// <summary/>
   57:         public string ORIG1 { get; set; }
   58:  
   59:         /// <summary/>
   60:         public string TRARSTR { get; set; }
   61:  
   62:         /// <summary/>
   63:         public string LNATT { get; set; }
   64:  
   65:         /// <summary/>
   66:         public string DIV { get; set; }
   67:  
   68:         /// <summary/>
   69:         public string COS { get; set; }
   70:  
   71:         /// <summary/>
   72:         public string ADDINF { get; set; }
   73:  
   74:         /// <summary/>
   75:         public string NUMBCH { get; set; }
   76:  
   77:         /// <summary/>
   78:         public string CTDIVI { get; set; }
   79:  
   80:         /// <summary/>
   81:         public string BLK { get; set; }
   82:  
   83:         /// <summary/>
   84:         public string Content { get; set; }
   85:  
   86:         /// <summary/>
   87:         public DateTime Created { get; set; }
   88:  
   89:         /// <summary/>
   90:         public DateTime Updated { get; set; }
   91:  
   92:         ////////////////////////////////////////////////////////////////////////////
   93:         ////////////////////////////////////////////////////////////////////////////
   94:  
   95:         /// <summary>
   96:         ///
   97:         /// </summary>
   98:         public string ToSimpleTextString()
   99:         {
  100:             return string.Empty; // Ia.Ftn.Cl.Model.Data.Siemens.Subscriber.ToSimpleTextString(this);
  101:         }
  102:  
  103:         ////////////////////////////////////////////////////////////////////////////
  104:         ////////////////////////////////////////////////////////////////////////////
  105:     }
  106:  
  107:     ////////////////////////////////////////////////////////////////////////////
  108:     ////////////////////////////////////////////////////////////////////////////
  109: }