- Aggiunta Copy per Inglesina

- Iniziato a sistemare per converisone dimensione Inglesina
This commit is contained in:
Annamaria Sassi
2026-04-14 13:08:38 +02:00
parent d5fe7645dd
commit 5e4907479b
11 changed files with 259 additions and 59 deletions
+8
View File
@@ -65,6 +65,14 @@ namespace WebWindowComplex.Models
newFill.SetGroupId(nCounterGroup);
newFill.SetFillType(SelFillType);
newFill.SetAreaType(AreaType);
if(AreaList != null && AreaList.Count > 0)
{
foreach (var item in AreaList)
{
Area newArea = item.Copy(newFill);
newFill.AreaList.Add(newArea);
}
}
return newFill;
}