شركة التطبيقات المتكاملة لتصميم النظم البرمجية الخاصة ش.ش.و.

Integrated Applications Programming Company

Skip Navigation LinksHome » Code Library » AlInitialInstallation

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

Alcatel-Lucent Initial Installation Entity Framework class for Next Generation Network (NGN) entity model.

   1:  using System;
   2:  using System.Collections;
   3:  using System.Collections.Generic;
   4:  using System.Linq;
   5:  using System.Web;
   6:  using System.ComponentModel.DataAnnotations;
   7:  using System.ComponentModel.DataAnnotations.Schema;
   8:  using System.Data;
   9:   
  10:  namespace Ia.Ngn.Cl.Model.AlcatelLucent
  11:  {
  12:      ////////////////////////////////////////////////////////////////////////////
  13:   
  14:      /// <summary publish="true">
  15:      /// Alcatel-Lucent Initial Installation Entity Framework class for Next Generation Network (NGN) entity model.
  16:      /// </summary>
  17:      /// 
  18:      /// <remarks> 
  19:      /// Copyright © 2014-2015 Jasem Y. Al-Shamlan (info@ia.com.kw), Integrated Applications - Kuwait. All Rights Reserved.
  20:      ///
  21:      /// 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
  22:      /// the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
  23:      ///
  24:      /// This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
  25:      /// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  26:      /// 
  27:      /// You should have received a copy of the GNU General Public License along with this library. If not, see http://www.gnu.org/licenses.
  28:      /// 
  29:      /// Copyright notice: This notice may not be removed or altered from any source distribution.
  30:      /// </remarks> 
  31:      public partial class AlInitialInstallation
  32:      {
  33:          /// <summary/>
  34:          public AlInitialInstallation() { }
  35:   
  36:          /// <summary/>
  37:          public long Id { get; set; }
  38:   
  39:          public string PremisesSlPon { get; set; }
  40:          public string OwnerName { get; set; }
  41:          public string CivilId { get; set; }
  42:          public string Plot { get; set; }
  43:          public string Building { get; set; }
  44:          public string Contact { get; set; }
  45:          public string Block { get; set; }
  46:          public string Pon { get; set; }
  47:          public string Street { get; set; }
  48:          public string BuildingType { get; set; }
  49:          public string OntType { get; set; }
  50:          public string OntSerial { get; set; }
  51:          public string OntId { get; set; }
  52:          public string Remark { get; set; }
  53:   
  54:          /// <summary/>
  55:          public DateTime Created { get; set; }
  56:          public DateTime Updated { get; set; }
  57:          public DateTime Viewed { get; set; }
  58:   
  59:          ////////////////////////////////////////////////////////////////////////////
  60:          ////////////////////////////////////////////////////////////////////////////
  61:      }
  62:   
  63:      ////////////////////////////////////////////////////////////////////////////
  64:      ////////////////////////////////////////////////////////////////////////////
  65:  }