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

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

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

    1: using System;
    2: using System.ComponentModel.DataAnnotations.Schema;
    3:  
    4: namespace Ia.Ftn.Cl.Models.Ui
    5: {
    6:     ////////////////////////////////////////////////////////////////////////////
    7:  
    8:     /// <summary publish="true">
    9:     /// Performance support class for Fixed Telecommunications Network (FTN) ui model.
   10:     /// </summary>
   11:     /// 
   12:     /// <remarks> 
   13:     /// Copyright © 2006-2024 Jasem Y. Al-Shamlan (info@ia.com.kw), Integrated Applications - Kuwait. All Rights Reserved.
   14:     /// </remarks> 
   15:     public class Performance
   16:     {
   17:         /// <summary/>
   18:         public Performance() { }
   19:  
   20:         /// <summary/>
   21:         public string StaffIdentityUserId { get; set; }
   22:  
   23:         /// <summary/>
   24:         public string FirstAndMiddleName { get; set; }
   25:  
   26:         /// <summary/>
   27:         public int Resolved { get; set; }
   28:  
   29:         /// <summary/>
   30:         public int Attempted { get; set; }
   31:  
   32:         /// <summary/>
   33:         public int Inserted { get; set; }
   34:  
   35:         /// <summary/>
   36:         public int Open { get; set; }
   37:  
   38:         /// <summary/>
   39:         public float AverageReportsPerDay { get; set; }
   40:  
   41:         /// <summary/>
   42:         public int Migrated { get; set; }
   43:  
   44:         ////////////////////////////////////////////////////////////////////////////
   45:         ////////////////////////////////////////////////////////////////////////////
   46:     }
   47:  
   48:     ////////////////////////////////////////////////////////////////////////////
   49:     ////////////////////////////////////////////////////////////////////////////
   50: }