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

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

Service Request Administrative Issue Entity Framework class for Fixed Telecommunications Network (FTN) UI model.

    1: using System;
    2: using System.Linq;
    3: using System.Runtime.Serialization;
    4: using System.Text;
    5:  
    6: namespace Ia.Ftn.Cl.Models.Ui
    7: {
    8:     ////////////////////////////////////////////////////////////////////////////
    9:  
   10:     /// <summary publish="true">
   11:     /// Service Request Administrative Issue Entity Framework class for Fixed Telecommunications Network (FTN) UI model.
   12:     /// </summary>
   13:     /// 
   14:     /// <remarks> 
   15:     /// Copyright © 2019-2020 Jasem Y. Al-Shamlan (info@ia.com.kw), Integrated Applications - Kuwait. All Rights Reserved.
   16:     /// </remarks> 
   17:     [DataContract(IsReference = true, Namespace = "kw.com.ia.ftn.api", Name = "ServiceRequestAdministrativeIssue")]
   18:     public class ServiceRequestAdministrativeIssue
   19:     {
   20:         ////////////////////////////////////////////////////////////////////////////
   21:  
   22:         /// <summary>
   23:         ///
   24:         /// </summary>
   25:         public ServiceRequestAdministrativeIssue()
   26:         {
   27:  
   28:         }
   29:  
   30:         ////////////////////////////////////////////////////////////////////////////
   31:  
   32:         /// <summary>
   33:         ///
   34:         /// </summary>
   35:         [DataMember(Name = "id")]
   36:         public string Id { get; set; }
   37:  
   38:         ////////////////////////////////////////////////////////////////////////////
   39:  
   40:         /// <summary>
   41:         ///
   42:         /// </summary>
   43:         [DataMember(Name = "service")]
   44:         public string Service { get; set; }
   45:  
   46:         ////////////////////////////////////////////////////////////////////////////
   47:  
   48:         /// <summary>
   49:         ///
   50:         /// </summary>
   51:         [DataMember(Name = "type")]
   52:         public int Type { get; set; }
   53:  
   54:         ////////////////////////////////////////////////////////////////////////////
   55:  
   56:         /// <summary>
   57:         ///
   58:         /// </summary>
   59:         [DataMember(Name = "value")]
   60:         public string Value { get; set; }
   61:  
   62:         ////////////////////////////////////////////////////////////////////////////
   63:  
   64:         /// <summary>
   65:         ///
   66:         /// </summary>
   67:         [DataMember(Name = "created")]
   68:         public DateTime Created { get; set; }
   69:  
   70:         ////////////////////////////////////////////////////////////////////////////
   71:  
   72:         /// <summary>
   73:         ///
   74:         /// </summary>
   75:         [DataMember(Name = "updated")]
   76:         public DateTime Updated { get; set; }
   77:  
   78:         ////////////////////////////////////////////////////////////////////////////
   79:         ////////////////////////////////////////////////////////////////////////////
   80:     }
   81:  
   82:     ////////////////////////////////////////////////////////////////////////////
   83:     ////////////////////////////////////////////////////////////////////////////
   84: }