From 60fbfb5e8c27f504aa9971828ac785052a6d0822 Mon Sep 17 00:00:00 2001 From: Serghei Cebotari Date: Fri, 13 Oct 2023 15:04:27 +0300 Subject: Refactoring --- .../DrinkingWaterHeatingPipes/StabilPipe.cs | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 RhSolutions.QueryModifiers/DrinkingWaterHeatingPipes/StabilPipe.cs (limited to 'RhSolutions.QueryModifiers/DrinkingWaterHeatingPipes/StabilPipe.cs') diff --git a/RhSolutions.QueryModifiers/DrinkingWaterHeatingPipes/StabilPipe.cs b/RhSolutions.QueryModifiers/DrinkingWaterHeatingPipes/StabilPipe.cs new file mode 100644 index 0000000..49dde86 --- /dev/null +++ b/RhSolutions.QueryModifiers/DrinkingWaterHeatingPipes/StabilPipe.cs @@ -0,0 +1,16 @@ +namespace RhSolutions.QueryModifiers.DrinkingWaterHeatingPipes; + +public class StabilPipe : DrinkingWaterHeatingPipe +{ + protected override string _title => "Stabil -PLATINUM"; + protected override Dictionary _diameterNames => new() + { + [16] = "16,2х2,6", + [20] = "20х2,9", + [25] = "25х3,7", + [32] = "32х4,7", + [40] = "40х6,0", + [50] = "50x6,9", + [63] = "63x8,6" + }; +} -- cgit v1.2.3