- Aggiunta lista Profili

- Aggiornato setup Hardware
This commit is contained in:
Annamaria Sassi
2025-10-14 15:02:39 +02:00
parent 0d8effa120
commit 90e6bc799a
17 changed files with 716 additions and 345 deletions
+7 -1
View File
@@ -34,6 +34,11 @@ namespace WebWindowComplex.DTO
/// </summary>
public string Glass { get; set; } = string.Empty;
/// <summary>
/// Tipologia profilo selezionato
/// </summary>
public string Profile { get; set; } = string.Empty;
/// <summary>
/// Template selezionato
/// </summary>
@@ -49,8 +54,9 @@ namespace WebWindowComplex.DTO
bool colorOK = !string.IsNullOrEmpty(ColorMaterial);
bool glassOk = !string.IsNullOrEmpty(Glass);
bool matOK = !string.IsNullOrEmpty(Material);
bool profileOK = !string.IsNullOrEmpty(Profile);
bool templateOK = Template != null;
return famHwOK && colorOK && matOK && glassOk && templateOK;
return famHwOK && colorOK && matOK && glassOk && templateOK && profileOK;
}
}
}