)>}]
شركة التطبيقات المتكاملة لتصميم وبرمجة البرمجيات الخاصة ش.ش.و.
Integrated Applications Programming Company
Home » Code Library » Feature (Ia.TentPlay.Cl.Model.Trek)

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

Feature Support class for TentPlay entity model

    1: using System;
    2: using System.Linq;
    3: using System.Collections.Generic;
    4: using System.IO;
    5:  
    6: namespace Ia.TentPlay.Cl.Model.Trek
    7: {
    8:     ////////////////////////////////////////////////////////////////////////////
    9:  
   10:     /// <summary publish="true">
   11:     /// Feature Support class for TentPlay entity model
   12:     /// </summary>
   13:     /// 
   14:     /// <remarks> 
   15:     /// Copyright © 2006-2023 Jasem Y. Al-Shamlan (info@ia.com.kw), Integrated Applications - Kuwait. All Rights Reserved.
   16:     ///
   17:     /// 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
   18:     /// the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
   19:     ///
   20:     /// This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
   21:     /// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
   22:     /// 
   23:     /// You should have received a copy of the GNU General Public License along with this library. If not, see http://www.gnu.org/licenses.
   24:     /// 
   25:     /// Copyright notice: This notice may not be removed or altered from any source distribution.
   26:     /// </remarks> 
   27:     public class Feature
   28:     {
   29:         // only Name and NativeName can have "'" to be able to store correctly in SQLite
   30:  
   31:         /// <summary/>
   32:         public string Id { get; set; }
   33:  
   34:         /// <summary/>
   35:         public double Latitude { get; set; }
   36:  
   37:         /// <summary/>
   38:         public double Longitude { get; set; }
   39:  
   40:         /// <summary/>
   41:         public int DistanceToCapital { get; set; }
   42:  
   43:         /// <summary/>
   44:         public string CMap { get; set; }
   45:  
   46:         /// <summary/>
   47:         public string Class { get; set; }
   48:  
   49:         /// <summary/>
   50:         public string Country { get; set; }
   51:  
   52:         /// <summary/>
   53:         public string FileCountry { get; set; }
   54:  
   55:         /// <summary/>
   56:         public string Name { get; set; }
   57:  
   58:         /// <summary/>
   59:         public string NoDiacriticLowerCaseName { get; set; }
   60:  
   61:         /// <summary/>
   62:         public string NativeName { get; set; }
   63:  
   64:         /// <summary/>
   65:         public string NoDiacriticNativeName { get; set; }
   66:  
   67:         /// <summary/>
   68:         public string FullTextSearchName { get; set; }
   69:  
   70:         /// <summary/>
   71:         public bool Deleted { get; set; }
   72:  
   73:         /// <summary/>
   74:         public DateTime Created { get; set; }
   75:  
   76:         /// <summary/>
   77:         public DateTime Updated { get; set; }
   78:  
   79:         /// <summary/>
   80:         public virtual FeatureDesignation Designation { get; set; }
   81:     }
   82:  
   83:     ////////////////////////////////////////////////////////////////////////////
   84:     ////////////////////////////////////////////////////////////////////////////
   85: }