public static Comment AddComment(this IPartHolder holder) { var comment = new Comment(); holder.Add(comment); return(comment); }
public static Section AddSection(this IPartHolder holder, string fixtureName) { var section = new Section(fixtureName); holder.Add(section); return(section); }