1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using FLY.Thick.BulkDataModule;
using FLY.Thick.Base.Server.OBJProxy;
using FLY.Thick.Base.OBJ_INTERFACE;
namespace FLY.Thick.Blowing.Server.OBJProxy
{
public class OBJProxy
{
OBJ_FileBus.Server_OBJProxy mServerOBJProxy;
BulkDataService_OBJProxy mBulkDataOBJProxy;
Curve_OBJProxy mCurveOBJProxy;
DynArea_OBJProxy mDynAreaOBJProxy;
FlyAD_OBJProxy mFlyADOBJProxy;
FLY.Thick.RemoteHistory.RemoteHistory_OBJProxy mRemoteHistoryOBJProxy;
Fix_OBJProxy mFixOBJProxy;
BlowingFixProfile_OBJProxy mProfileOBJProxy;
WarningSystem_OBJProxy mWarningOBJProxy;
Password_OBJProxy mPasswordOBJProxy;
TDGage_OBJProxy mTDGageOBJProxy;
BlowingFix_OBJProxy mBlowingOBJProxy;
BlowingDetect_OBJProxy mBDetectOBJProxy;
public OBJProxy(int objsys_idx, TDGage gage)
{
TDGage mGage = gage;
mServerOBJProxy = new OBJ_FileBus.Server_OBJProxy(objsys_idx, mGage.mServer);
mBulkDataOBJProxy = new BulkDataService_OBJProxy(objsys_idx, mGage.mBulk);
mProfileOBJProxy = new BlowingFixProfile_OBJProxy(objsys_idx, mGage.mProfile);
mCurveOBJProxy = new Curve_OBJProxy(objsys_idx, mGage.mCurve);
mDynAreaOBJProxy = new DynArea_OBJProxy(objsys_idx, mGage.mDynArea);
mFlyADOBJProxy = new FlyAD_OBJProxy(objsys_idx, mGage.mFlyAD);
mRemoteHistoryOBJProxy = new FLY.Thick.RemoteHistory.RemoteHistory_OBJProxy(objsys_idx,
OBJ_INTERFACE_ID.REMOTEHISTORY_ID, mGage.mHistory);
mFixOBJProxy = new Fix_OBJProxy(objsys_idx, mGage.mGMFix);
mWarningOBJProxy = new WarningSystem_OBJProxy(objsys_idx, mGage.mWarning);
mPasswordOBJProxy = new Password_OBJProxy(objsys_idx, mGage.mPassword);
mTDGageOBJProxy = new TDGage_OBJProxy(objsys_idx, mGage);
mBlowingOBJProxy = new BlowingFix_OBJProxy(objsys_idx, mGage.mGMRenZiJiaFix);
mBDetectOBJProxy = new BlowingDetect_OBJProxy(objsys_idx, mGage.mGMRenZiJiaFix.mPDetect);
mTDGageOBJProxy.CurrObjSys.Start_Conn_Server(
mGage.mSysParam.LocalEP,
mServerOBJProxy.ID,
mBulkDataOBJProxy.ID);
}
}
}