public Baseplate(string name, double thickness, double width, double height, Steel steel) { _name = name; Width = width; Height = height; Thickness = thickness; _steel = steel; }
/// <summary> /// base class constructor /// </summary> /// <param name="name"></param> public Column(string section, Steel Fy) { _section = section; _Fy = Fy; }
/// <summary> /// base class constructor /// </summary> /// <param name="name"></param> public ColumnDet(ISection section, Steel Fy) { _section = section; _Fy = Fy; }