)>}]
شركة التطبيقات المتكاملة لتصميم وبرمجة البرمجيات الخاصة ش.ش.و.
Integrated Applications Programming Company
Skip Navigation Links

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

AXE Subscriber Entity Framework class for Optical Fiber Network (OFN) UI model.

    1: using System;
    2: using System.ComponentModel.DataAnnotations;
    3: using System.ComponentModel.DataAnnotations.Schema;
    4:  
    5: namespace Ia.Ngn.Cl.Model.Ui.Ericsson
    6: {
    7:     ////////////////////////////////////////////////////////////////////////////
    8:  
    9:     /// <summary publish="true">
   10:     /// AXE Subscriber Entity Framework class for Optical Fiber Network (OFN) 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:     ///
   16:     /// 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
   17:     /// the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
   18:     ///
   19:     /// This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
   20:     /// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
   21:     /// 
   22:     /// You should have received a copy of the GNU General Public License along with this library. If not, see http://www.gnu.org/licenses.
   23:     /// 
   24:     /// Copyright notice: This notice may not be removed or altered from any source distribution.
   25:     /// </remarks> 
   26:     public class Subscriber
   27:     {
   28:         /// <summary/>
   29:         public Subscriber() { }
   30:  
   31:         /// <summary/>
   32:         public string Id { get; set; }
   33:  
   34:         /// <summary/>
   35:         public int SNB { get; set; }
   36:  
   37:         /// <summary/>
   38:         public string DEV { get; set; }
   39:  
   40:         /// <summary/>
   41:         public string DETY { get; set; }
   42:  
   43:         /// <summary/>
   44:         public string SUT { get; set; }
   45:  
   46:         /// <summary/>
   47:         public string SCL { get; set; }
   48:  
   49:         /// <summary/>
   50:         public string MIS { get; set; }
   51:  
   52:         /// <summary/>
   53:         public string COS { get; set; }
   54:  
   55:         /// <summary/>
   56:         public string Content { get; set; }
   57:  
   58:         /// <summary/>
   59:         public DateTime Created { get; set; }
   60:  
   61:         /// <summary/>
   62:         public DateTime Updated { get; set; }
   63:  
   64:         ////////////////////////////////////////////////////////////////////////////
   65:         ////////////////////////////////////////////////////////////////////////////
   66:  
   67:         /// <summary>
   68:         ///
   69:         /// </summary>
   70:         public string ToSimpleTextString()
   71:         {
   72:             return string.Empty; // Ia.Ngn.Cl.Model.Data.Ericsson.Subscriber.ToSimpleTextString(this);
   73:         }
   74:  
   75:         ////////////////////////////////////////////////////////////////////////////
   76:         ////////////////////////////////////////////////////////////////////////////
   77:     }
   78:  
   79:     ////////////////////////////////////////////////////////////////////////////
   80:     ////////////////////////////////////////////////////////////////////////////
   81: }