- Aggiunta lista Profili
- Aggiornato setup Hardware
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user