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

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

TableInformation support class for Ministry Database Analysis Application business model.

    1: using System;
    2: using System.Collections.Generic;
    3: using System.Data;
    4: using System.IO;
    5: using System.Text.Json;
    6:  
    7: namespace Ia.Ftn.Mdaa.Cl.Models.Business
    8: {
    9:     ////////////////////////////////////////////////////////////////////////////
   10:  
   11:     /// <summary publish="true">
   12:     /// TableInformation support class for Ministry Database Analysis Application business model.
   13:     /// </summary>
   14:     /// 
   15:     /// <remarks> 
   16:     /// Copyright © 2022-2023 Jasem Y. Al-Shamlan (info@ia.com.kw), Integrated Applications - Kuwait. All Rights Reserved.
   17:     /// </remarks> 
   18:  
   19:     ////////////////////////////////////////////////////////////////////////////
   20:  
   21:     /// <summary>
   22:     ///
   23:     /// </summary>
   24:     public class TableInformation
   25:     {
   26:         /// <summary/>
   27:         public TableInformation() { }
   28:  
   29:         /// <summary/>
   30:         public string Name { get; set; }
   31:  
   32:         /// <summary/>
   33:         public string Schema { get; set; }
   34:  
   35:         /// <summary/>
   36:         public int Count { get; set; }
   37:  
   38:         /// <summary/>
   39:         public string Desc { get; set; }
   40:  
   41:         /// <summary/>
   42:         public string TopRecordText { get; set; }
   43:  
   44:         /// <summary/>
   45:         public FieldInformation FieldInformationList { get; set; }
   46:  
   47:         ////////////////////////////////////////////////////////////////////////////
   48:     }
   49:  
   50:     ////////////////////////////////////////////////////////////////////////////
   51:  
   52:     /// <summary>
   53:     ///
   54:     /// </summary>
   55:     public class FieldInformation
   56:     {
   57:         /// <summary/>
   58:         public FieldInformation() { }
   59:  
   60:         /// <summary/>
   61:         public string Name { get; set; }
   62:  
   63:         /// <summary/>
   64:         public string Type { get; set; }
   65:  
   66:         ////////////////////////////////////////////////////////////////////////////
   67:     }
   68:  
   69:     ////////////////////////////////////////////////////////////////////////////
   70:     ////////////////////////////////////////////////////////////////////////////
   71: }