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

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

Text support class for Fixed Telecommunications Network (FTN) ui model.

    1: namespace Ia.Ftn.Cl.Models.Ui
    2: {
    3:     ////////////////////////////////////////////////////////////////////////////
    4:  
    5:     /// <summary publish="true">
    6:     /// Text support class for Fixed Telecommunications Network (FTN) ui model.
    7:     /// </summary>
    8:     /// 
    9:     /// <remarks> 
   10:     /// Copyright © 2018-2019 Jasem Y. Al-Shamlan (info@ia.com.kw), Integrated Applications - Kuwait. All Rights Reserved.
   11:     /// </remarks> 
   12:     public class Text
   13:     {
   14:         /// <summary/>
   15:         public Text() { }
   16:  
   17:         ////////////////////////////////////////////////////////////////////////////
   18:  
   19:         /// <summary>
   20:         /// Expression of insert or update or delete of record
   21:         /// </summary>
   22:         public static string ExpressionOfInsertOrUpdateOrDelete(bool insert, bool update, bool delete)
   23:         {
   24:             string s;
   25:  
   26:             if (insert) s = "insert";
   27:             else if (update) s = "update";
   28:             else if (delete) s = "delete";
   29:             else s = "no change";
   30:  
   31:             return s;
   32:         }
   33:  
   34:         ////////////////////////////////////////////////////////////////////////////
   35:         ////////////////////////////////////////////////////////////////////////////
   36:     }
   37:  
   38:     ////////////////////////////////////////////////////////////////////////////
   39:     ////////////////////////////////////////////////////////////////////////////
   40: }