internal PremiseSubscription(SYSClient sysClient, string objectId, long subscriptionId, string clientSubscriptionId) { _sysClient = sysClient; _objectId = objectId; _subscriptionId = subscriptionId; clientSideSubscriptionId = clientSubscriptionId; }
public PremiseObject(SYSClient client, string objectId) { _client = client ?? throw new ArgumentNullException(nameof(client)); _objectId = objectId; }
public PremiseObject(string objectId) { _client = null; _objectId = objectId; }