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

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

WordVerse 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:     /// WordVerse 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 WordVerse
   33:     {
   34:         /// <summary/>
   35:         public WordVerse()
   36:         {
   37:         }
   38:  
   39:         /// <summary/>
   40:         public string WordId { get; set; }
   41:  
   42:         /// <summary/>
   43:         public Word Word { get; set; }
   44:  
   45:         /// <summary/>
   46:         public string VerseId { get; set; }
   47:  
   48:         /// <summary/>
   49:         public Verse Verse { get; set; }
   50:  
   51:         ////////////////////////////////////////////////////////////////////////////
   52:         ////////////////////////////////////////////////////////////////////////////
   53:     }
   54:  
   55:     ////////////////////////////////////////////////////////////////////////////
   56:     ////////////////////////////////////////////////////////////////////////////
   57: }