2024-02-08 17:11:11 +03:00
|
|
|
|
namespace RhSolutions.Parsers.Fittings;
|
2023-10-13 22:11:59 +03:00
|
|
|
|
|
2024-02-08 17:11:11 +03:00
|
|
|
|
[ParserKey("Фиксатор поворота водоснабжение")]
|
2023-10-13 22:11:59 +03:00
|
|
|
|
public class BendFormerSanitary : DrinkingWaterHeatingFitting
|
|
|
|
|
{
|
2023-10-22 13:43:18 +03:00
|
|
|
|
protected override string _title => "Фиксатор поворота с кольцами";
|
|
|
|
|
|
2024-02-08 17:11:11 +03:00
|
|
|
|
public override bool TryParse(string input, out string output)
|
2023-10-22 13:43:18 +03:00
|
|
|
|
{
|
|
|
|
|
output = string.Empty;
|
|
|
|
|
var diameterMatch = _diameter.Match(input);
|
|
|
|
|
if (!diameterMatch.Success)
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
string diameter = diameterMatch.Groups["Diameter"].Value;
|
|
|
|
|
var angleMatch = _angle.Match(input);
|
|
|
|
|
string angle = angleMatch.Success ? angleMatch.Groups["Angle"].Value : "90";
|
|
|
|
|
output = $"{_title} {angle}° {diameter}";
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2023-10-13 22:11:59 +03:00
|
|
|
|
}
|