public StoreIntegrityCheckJobIdParameter(StoreIntegrityCheckJobIdentity objectId) { if (objectId == null) { throw new ArgumentNullException("objectId"); } this.rawIdentity = objectId.ToString(); }
void IIdentityParameter.Initialize(ObjectId objectId) { StoreIntegrityCheckJobIdentity storeIntegrityCheckJobIdentity = objectId as StoreIntegrityCheckJobIdentity; if (storeIntegrityCheckJobIdentity == null) { throw new ArgumentException("objectId"); } this.rawIdentity = storeIntegrityCheckJobIdentity.ToString(); }