28 lines
953 B
C#
28 lines
953 B
C#
|
|
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
|
|
}
|
|
}
|