17 lines
432 B
C#
17 lines
432 B
C#
namespace RhSolutions.Api.Services
|
||
{
|
||
public class StabilPipeQueryModifier : FlexPipeQueryModifier
|
||
{
|
||
protected override string diameterPattern => @"16|20|25|32|40";
|
||
protected override string pipeName => "Stabil -PLATINUM";
|
||
protected override Dictionary<string, string> diameterNames => new()
|
||
{
|
||
["16"] = "16,2х2,6",
|
||
["20"] = "20х2,9",
|
||
["25"] = "25х3,7",
|
||
["32"] = "32х4,7",
|
||
["40"] = "40х6,0"
|
||
};
|
||
}
|
||
}
|