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

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

Support class for TentPlay Trek business 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.TentPlay.Cl.Model.Business.Trek
   11: {
   12:     ////////////////////////////////////////////////////////////////////////////
   13:  
   14:     /// <summary publish="true">
   15:     /// Support class for TentPlay Trek business model
   16:     /// </summary>
   17:     /// 
   18:     /// <remarks> 
   19:     /// Copyright © 2012-2016 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 FeatureName
   32:     {
   33:         /// <summary/>
   34:         public FeatureName() { }
   35:  
   36:         ///<summary/>
   37:         public int UNI { get; set; }
   38:  
   39:         ///<summary/>
   40:         public int UFI { get; set; }
   41:  
   42:         ///<summary/>
   43:         public string CC2 { get; set; }
   44:  
   45:         ///<summary/>
   46:         public string NT { get; set; }
   47:  
   48:         ///<summary/>
   49:         public string LC { get; set; }
   50:  
   51:         ///<summary/>
   52:         public string SHORT_FORM { get; set; }
   53:  
   54:         ///<summary/>
   55:         public string GENERIC { get; set; }
   56:  
   57:         ///<summary/>
   58:         public string SORT_NAME_RO { get; set; }
   59:  
   60:         ///<summary/>
   61:         public string FULL_NAME_RO { get; set; }
   62:  
   63:         ///<summary/>
   64:         public string FULL_NAME_ND_RO { get; set; }
   65:  
   66:         ///<summary/>
   67:         public string SORT_NAME_RG { get; set; }
   68:  
   69:         ///<summary/>
   70:         public string FULL_NAME_RG { get; set; }
   71:  
   72:         ///<summary/>
   73:         public string FULL_NAME_ND_RG { get; set; }
   74:  
   75:         ///<summary/>
   76:         public int NAME_RANK { get; set; }
   77:  
   78:         ///<summary/>
   79:         public int NAME_LINK { get; set; }
   80:  
   81:         ///<summary/>
   82:         public string TRANSL_CD { get; set; }
   83:  
   84:         ///<summary/>
   85:         public string NM_MODIFY_DATE { get; set; }
   86:  
   87:         /// <summary/>
   88:         public virtual Feature Feature { get; set; }
   89:  
   90:         ////////////////////////////////////////////////////////////////////////////
   91:         ////////////////////////////////////////////////////////////////////////////
   92:     }
   93:  
   94:     ////////////////////////////////////////////////////////////////////////////
   95:     ////////////////////////////////////////////////////////////////////////////
   96: }