public static Bar Bar(BarType type, BarGroupType grouping) { string typeCode = type.GetCode(); string group = grouping.GetCode(); return(new Bar(typeCode, group)); }
public static Bar Bar(BarType type) { string typeCode = type.GetCode(); return(new Bar(typeCode, "g")); }