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

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

Default data support class.

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