fixed survey issue in response level, and added logic for start and end date as optional date

This commit is contained in:
uppuv
2023-11-05 14:19:37 -05:00
29 changed files with 512 additions and 547 deletions

View File

@ -13,9 +13,9 @@ namespace DamageAssesment.Api.Surveys.Db
public bool IsEnabled { get; set; }
public DateTime StartDate { get; set; }
public DateTime? StartDate { get; set; }
public DateTime EndDate { get; set; }
public DateTime? EndDate { get; set; }
public DateTime CreatedDate { get; set; } = DateTime.Now;
/*