/// <summary> /// Initializes a new instance of the <see cref="RestMSJoin"/> class. /// </summary> /// <param name="join">The join.</param> public RestMSJoin(Join join) { Name = join.Name.Value; Type = join.Type.ToString(); Address = join.Address.Value; Feed = join.FeedHref.AbsoluteUri; }
public void AddJoin(Join join) { _joins.Add(join); }
protected bool Equals(Join other) { return(Name == other.Name); }
protected bool Equals(Join other) { return Name == other.Name; }
/// <summary> /// Adds the join to the <see cref="Joins"/> collection. /// </summary> /// <param name="join">The join.</param> public void AddJoin(Join join) { Joins[join.Address] = new Join[] { join }; }
/// <summary> /// Initializes a new instance of the <see cref="Command"/> class. /// </summary> /// <param name="join">The join.</param> public AddJoinCommand(Join join) : base(Guid.NewGuid()) { Join = join; }