private Category AddChild(Category child) { child.Parent = this; children.Add(child); return this; }
private Category AddChild(string name) { var child = new Category(name) { Parent = this }; children.Add(child); return this; }