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

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

Word Koran Reference Network Class Library support functions: Entity model

    1: using System;
    2: using System.Collections.Generic;
    3: using System.Linq;
    4: using System.Web;
    5: using System.Text;
    6: using System.ComponentModel.DataAnnotations;
    7: using System.ComponentModel.DataAnnotations.Schema;
    8:  
    9: namespace Ia.Islamic.Cl.Model
   10: {
   11:     ////////////////////////////////////////////////////////////////////////////
   12:  
   13:     /// <summary publish="true">
   14:     /// Word Koran Reference Network Class Library support functions: Entity model
   15:     /// </summary>
   16:     /// <value>
   17:     /// https://msdn.microsoft.com/en-us/library/z1hkazw7(v=vs.100).aspx
   18:     /// </value>
   19:     /// <remarks> 
   20:     /// Copyright © 2001-2015 Jasem Y. Al-Shamlan (info@ia.com.kw), Integrated Applications - Kuwait. All Rights Reserved.
   21:     ///
   22:     /// 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
   23:     /// the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
   24:     ///
   25:     /// This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
   26:     /// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
   27:     /// 
   28:     /// You should have received a copy of the GNU General Public License along with this library. If not, see http://www.gnu.org/licenses.
   29:     /// 
   30:     /// Copyright notice: This notice may not be removed or altered from any source distribution.
   31:     /// </remarks> 
   32:     public class Word
   33:     {
   34:         /// <summary/>
   35:         public Word()
   36:         {
   37:             this.WordVerses = new List<WordVerse>();
   38:         }
   39:  
   40:         /// <summary/>
   41:         [Key, DatabaseGenerated(DatabaseGeneratedOption.None)]
   42:         public string Id { get; set; }
   43:  
   44:         /// <summary/>
   45:         public string Content { get; set; }
   46:  
   47:         /// <summary/>
   48:         public virtual ICollection<WordVerse> WordVerses { get; set; }
   49:  
   50:         ////////////////////////////////////////////////////////////////////////////
   51:         ////////////////////////////////////////////////////////////////////////////
   52:     }
   53:  
   54:     ////////////////////////////////////////////////////////////////////////////
   55:     ////////////////////////////////////////////////////////////////////////////
   56: }