TransactionalNodeService.Common.MapParameter.MapParameter C# (CSharp) Method

MapParameter() public method

public MapParameter ( System.Guid newGuid ) : System
newGuid System.Guid
return System
        public MapParameter(Guid newGuid)
        {
            Id = newGuid;

            // As this object has just been created, we need to assume that it is completely new. In an event that this will become the container for a
            // pre-existing parameter, the "new" and "dirty" states will be reset.
            IsNew = true;
            IsDirty = false;
            IsDbInstance = false;
            ValueUpdated = false;
        }

Same methods

MapParameter::MapParameter ( ) : System