public GetResourceLocatorByIdOp <TId> DeepCloneWithId(TId id)
        {
            var result = new GetResourceLocatorByIdOp <TId>(
                id);

            return(result);
        }
        /// <inheritdoc />
        public bool Equals(GetResourceLocatorByIdOp <TId> other)
        {
            if (ReferenceEquals(this, other))
            {
                return(true);
            }

            if (ReferenceEquals(other, null))
            {
                return(false);
            }

            var result = this.Id.IsEqualTo(other.Id);

            return(result);
        }