diff options
author | Serghei Cebotari <serghei@cebotari.ru> | 2023-10-10 22:26:16 +0300 |
---|---|---|
committer | Serghei Cebotari <serghei@cebotari.ru> | 2023-10-10 22:26:16 +0300 |
commit | 6b9c0dfffc3ecfcfb642f696250aee8e4ed6031b (patch) | |
tree | 2d98f14ab3c194f6e5620fa375c4fd805c6b957e /RhSolutions.QueryModifiers/PinkPipeQueryModifier.cs | |
parent | 942c60beeac8b89643dc66235db62d4c8f739a0a (diff) |
Move Modifiers to own project
Diffstat (limited to 'RhSolutions.QueryModifiers/PinkPipeQueryModifier.cs')
-rw-r--r-- | RhSolutions.QueryModifiers/PinkPipeQueryModifier.cs | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/RhSolutions.QueryModifiers/PinkPipeQueryModifier.cs b/RhSolutions.QueryModifiers/PinkPipeQueryModifier.cs new file mode 100644 index 0000000..c76077f --- /dev/null +++ b/RhSolutions.QueryModifiers/PinkPipeQueryModifier.cs @@ -0,0 +1,22 @@ +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() + { + ["бухт"] = "бухта", + ["штанг"] = "прямые отрезки", + ["отр"] = "прямые отрезки" + }; +} |