initialize
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
|
||||
|
||||
namespace com.itac.oib.client
|
||||
{
|
||||
// property: assembly: ASM.AS.OIB.Client, Version: 3.0.0.0
|
||||
public class OibClientService {
|
||||
|
||||
// canRead:True, canWrite:False
|
||||
private string displayName;
|
||||
|
||||
public void setDisplayName(string displayName) {
|
||||
this.displayName = displayName;
|
||||
}
|
||||
// field DisplayName without setMethod
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,27 @@
|
||||
|
||||
using com.itac.oib.linecontrol.service;
|
||||
using System;
|
||||
|
||||
namespace com.itac.oib.client
|
||||
{
|
||||
// property: assembly: ASM.AS.OIB.Client, Version: 3.0.0.0
|
||||
public class OibLineControlAccess : OibService {
|
||||
|
||||
// property: assembly: ASM.AS.OIB.SIPLACEPro.LineControl.Proxy, Version: 5.1.0.84
|
||||
// canRead:True, canWrite:False
|
||||
private OibLineControlAccess lineControlSession;
|
||||
// property: assembly: mscorlib, Version: 4.0.0.0
|
||||
// canRead:True, canWrite:False
|
||||
private Nullable<bool> isServiceAlive;
|
||||
|
||||
public void setLineControlSession(OibLineControlAccess lineControlSession) {
|
||||
this.lineControlSession = lineControlSession;
|
||||
}
|
||||
// field LineControlSession without setMethod
|
||||
|
||||
public void setIsServiceAlive(Nullable<bool> isServiceAlive) {
|
||||
this.isServiceAlive = isServiceAlive;
|
||||
}
|
||||
// field IsServiceAlive without setMethod
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
|
||||
|
||||
namespace com.itac.oib.client
|
||||
{
|
||||
// property: assembly: ASM.AS.OIB.Client, Version: 3.0.0.0
|
||||
public class OibService : OibClientService {
|
||||
|
||||
// canRead:True, canWrite:False
|
||||
private string serviceName;
|
||||
|
||||
public void setServiceName(string serviceName) {
|
||||
this.serviceName = serviceName;
|
||||
}
|
||||
// field ServiceName without setMethod
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user