16 lines
483 B
C#
16 lines
483 B
C#
|
namespace RhSolutions.QueryModifiers.DrinkingWaterHeatingFittings;
|
||
|
|
||
|
public class EuroconeAdapter : DrinkingWaterHeatingFitting
|
||
|
{
|
||
|
protected override string _title => "Переходник на евроконус";
|
||
|
protected override string? BuildRhSolutionsName(string query)
|
||
|
{
|
||
|
var diameterMatch = _diameter.Match(query);
|
||
|
if (diameterMatch.Success)
|
||
|
{
|
||
|
string diameter = diameterMatch.Groups["Diameter"].Value;
|
||
|
return $"{_title} {diameter}-G 3/4";
|
||
|
}
|
||
|
return null;
|
||
|
}
|
||
|
}
|