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

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

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

    1: using System;
    2: using System.ComponentModel.DataAnnotations;
    3: using System.ComponentModel.DataAnnotations.Schema;
    4:  
    5: namespace Ia.Ftn.Cl.Models.Ui.Ericsson
    6: {
    7:     ////////////////////////////////////////////////////////////////////////////
    8:  
    9:     /// <summary publish="true">
   10:     /// AXE Subscriber Entity Framework class for Fixed Telecommunications Network (FTN) UI model.
   11:     /// </summary>
   12:     /// 
   13:     /// <remarks> 
   14:     /// Copyright � 2019-2020 Jasem Y. Al-Shamlan (info@ia.com.kw), Integrated Applications - Kuwait. All Rights Reserved.
   15:     /// </remarks> 
   16:     public class Subscriber
   17:     {
   18:         /// <summary/>
   19:         public Subscriber() { }
   20:  
   21:         /// <summary/>
   22:         public string Id { get; set; }
   23:  
   24:         /// <summary/>
   25:         public int SNB { get; set; }
   26:  
   27:         /// <summary/>
   28:         public string DEV { get; set; }
   29:  
   30:         /// <summary/>
   31:         public string DETY { get; set; }
   32:  
   33:         /// <summary/>
   34:         public string SUT { get; set; }
   35:  
   36:         /// <summary/>
   37:         public string SCL { get; set; }
   38:  
   39:         /// <summary/>
   40:         public string MIS { get; set; }
   41:  
   42:         /// <summary/>
   43:         public string COS { get; set; }
   44:  
   45:         /// <summary/>
   46:         public string Content { get; set; }
   47:  
   48:         /// <summary/>
   49:         public DateTime Created { get; set; }
   50:  
   51:         /// <summary/>
   52:         public DateTime Updated { get; set; }
   53:  
   54:         ////////////////////////////////////////////////////////////////////////////
   55:         ////////////////////////////////////////////////////////////////////////////
   56:  
   57:         /// <summary>
   58:         ///
   59:         /// </summary>
   60:         public string ToSimpleTextString()
   61:         {
   62:             return string.Empty; // Ia.Ftn.Cl.Model.Data.Ericsson.Subscriber.ToSimpleTextString(this);
   63:         }
   64:  
   65:         ////////////////////////////////////////////////////////////////////////////
   66:         ////////////////////////////////////////////////////////////////////////////
   67:     }
   68:  
   69:     ////////////////////////////////////////////////////////////////////////////
   70:     ////////////////////////////////////////////////////////////////////////////
   71: }