public RelationshipSource(Mastonet.Entities.Relationship cRelationshipSource)
 {
     IsFollowing          = cRelationshipSource.Following;
     IsFollowedBy         = cRelationshipSource.FollowedBy;
     IsFollowingRequested = cRelationshipSource.Requested;
     IsBlocking           = cRelationshipSource.Blocking;
     IsMuting             = cRelationshipSource.Muting;
 }
 public Relationship(Mastonet.Entities.Relationship cRelationship)
 {
     Target = new RelationshipTarget();
     Source = new RelationshipSource(cRelationship);
 }