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

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

Nokia AmsTransaction Entity Framework class for Fixed Telecommunications Network (FTN) entity model.

    1: using System;
    2: using System.ComponentModel.DataAnnotations.Schema;
    3: using System.Linq;
    4: using System.Threading;
    5: using System.Threading.Tasks;
    6:  
    7: namespace Ia.Ftn.Cl.Models.Nokia
    8: {
    9:     ////////////////////////////////////////////////////////////////////////////
   10:  
   11:     /// <summary publish="true">
   12:     /// Nokia AmsTransaction Entity Framework class for Fixed Telecommunications Network (FTN) entity model.
   13:     /// </summary>
   14:     /// 
   15:     /// <remarks> 
   16:     /// Copyright © 2006-2021 Jasem Y. Al-Shamlan (info@ia.com.kw), Integrated Applications - Kuwait. All Rights Reserved.
   17:     /// </remarks> 
   18:     public class AmsTransaction
   19:     {
   20:         ////////////////////////////////////////////////////////////////////////////
   21:  
   22:         /// <summary>
   23:         ///
   24:         /// </summary>
   25:         public AmsTransaction() { }
   26:  
   27:         /// <summary/>
   28:         //[Key, DatabaseGenerated(DatabaseGeneratedOption.Identity)]
   29:         public int Id { get; set; }
   30:  
   31:         /// <summary/>
   32:         public DateTime EventTime { get; set; }
   33:  
   34:         /// <summary/>
   35:         public string User { get; set; }
   36:  
   37:         /// <summary/>
   38:         public string Application { get; set; }
   39:  
   40:         /// <summary/>
   41:         public string Operation { get; set; }
   42:  
   43:         /// <summary/>
   44:         public string Agent { get; set; }
   45:  
   46:         /// <summary/>
   47:         public string Object { get; set; }
   48:  
   49:         /// <summary/>
   50:         public string Argument { get; set; }
   51:  
   52:         /// <summary/>
   53:         public string Session { get; set; }
   54:  
   55:         /// <summary/>
   56:         public string Result { get; set; }
   57:  
   58:         ////////////////////////////////////////////////////////////////////////////    
   59:         ////////////////////////////////////////////////////////////////////////////
   60:     }
   61:  
   62:     ////////////////////////////////////////////////////////////////////////////
   63:     ////////////////////////////////////////////////////////////////////////////   
   64: }