23 lines
579 B
C#
23 lines
579 B
C#
|
namespace RhSolutions.QueryModifiers;
|
|||
|
|
|||
|
public class PinkPipeQueryModifier : PipeQueryModifier
|
|||
|
{
|
|||
|
protected override string pipeName => "Pink+";
|
|||
|
protected override Dictionary<string, string> diameterNames => new()
|
|||
|
{
|
|||
|
["16"] = "16х2,2",
|
|||
|
["20"] = "20х2,8",
|
|||
|
["25"] = "25х3,5",
|
|||
|
["32"] = "32х4,4",
|
|||
|
["40"] = "40х5,5",
|
|||
|
["50"] = "50х6,9",
|
|||
|
["63"] = "63х8,7"
|
|||
|
};
|
|||
|
protected override Dictionary<string, string> makeUpNames => new()
|
|||
|
{
|
|||
|
["бухт"] = "бухта",
|
|||
|
["штанг"] = "прямые отрезки",
|
|||
|
["отр"] = "прямые отрезки"
|
|||
|
};
|
|||
|
}
|