Ejemplo n.º 1
0
        /// <inheritdoc />
        public object Clone()
        {
            var copy = new BlogDto();

            copy.CopyPublicProperties(this);
            return(copy);
        }
Ejemplo n.º 2
0
 public void CopyFrom(BlogDto other)
 {
     this.CopyPublicProperties(other);
 }