diff --git a/BookAStar/BookAStar/Model/Workflow/Estimate.cs b/BookAStar/BookAStar/Model/Workflow/Estimate.cs index c0c269a7..586c8185 100644 --- a/BookAStar/BookAStar/Model/Workflow/Estimate.cs +++ b/BookAStar/BookAStar/Model/Workflow/Estimate.cs @@ -2,6 +2,7 @@ using BookAStar.Helpers; using BookAStar.Model.Interfaces; using Newtonsoft.Json; +using System; using System.Collections.Generic; using System.Linq; @@ -76,6 +77,9 @@ namespace BookAStar.Model.Workflow return Bill?.Aggregate((decimal)0, (t, l) => t + l.Count * l.UnitaryCost) ?? (decimal)0; } } - + + public DateTime LatestValidationDate { get; set; } + + public DateTime ClientApprouvalDate { get; set; } } }