Fix migration + viemodel data

This commit is contained in:
Samuele Locatelli
2023-06-05 08:20:46 +02:00
parent af682e0270
commit 79081639b0
10 changed files with 1063 additions and 16 deletions
@@ -70,5 +70,16 @@ namespace WebDoorCreator.Data.DbModels
/// TotCost represent the total cost of the order
/// </summary>
public decimal TotCost { get; set; } = 0;
/// <summary>
/// Data promessa di consegna
/// </summary>
public DateTime DateDelivery { get; set; } = DateTime.Now.AddDays(60);
/// <summary>
/// Eventuale sconto globale
/// </summary>
public double Discount { get; set; } = 0;
}
}