Exemple #1
0
 public URLViewModel(URLViewModel other)
 {
     this.PointedUrl  = new URLRelative();
     this.CommonUrl   = other.CommonUrl;
     this.LinkingUrl  = other.LinkingUrl;
     this.RelativeUrl = other.RelativeUrl;
     this.DisplayName = other.DisplayName;
 }
Exemple #2
0
 public void Replace(URLViewModel otherUrl)
 {
     this.CommonUrl   = otherUrl.CommonUrl;
     this.LinkingUrl  = otherUrl.LinkingUrl;
     this.RelativeUrl = otherUrl.RelativeUrl;
 }