| | |
| | | using System;
|
| | | using System.Data;
|
| | | using System.Configuration;
|
| | | using System.Web;
|
| | | using System.Web.Security;
|
| | | using System.Web.UI;
|
| | | using System.Web.UI.HtmlControls;
|
| | | using System.Web.UI.WebControls;
|
| | | using System.Web.UI.WebControls.WebParts;
|
| | |
|
| | | namespace CCSTrace.CCS.EventAI
|
| | | namespace CCSTrace.CCS.EventAI
|
| | | {
|
| | | public class Equipment
|
| | | {
|
| | | int FSC;
|
| | | int UFID;
|
| | |
|
| | | public Equipment(int m_Fsc, int m_Ufid)
|
| | | public Equipment(int mFsc, int mUfid)
|
| | | {
|
| | | this.FSC = m_Fsc;
|
| | | this.UFID = m_Ufid;
|
| | | Fsc = mFsc;
|
| | | Ufid = mUfid;
|
| | | }
|
| | |
|
| | | public int getFSC()
|
| | | {
|
| | | return FSC;
|
| | | }
|
| | | public int Fsc { get; }
|
| | |
|
| | | public int getUFID()
|
| | | {
|
| | | return UFID;
|
| | | }
|
| | | public int Ufid { get; }
|
| | | }
|
| | | }
|
| | | } |