Dockerise Sprint 2 Code with bug fix

This commit is contained in:
Santhosh S
2023-08-28 01:03:24 -04:00
parent cd261a5556
commit a130aff300
38 changed files with 690 additions and 96 deletions

View File

@ -54,7 +54,7 @@ namespace DamageAssesment.Api.Surveys.Providers
IEnumerable<Models.Survey> surveysList = null;
try
{
logger?.LogInformation("Gell all Surveys from DB");
logger?.LogInformation("Get all Surveys from DB");
var surveys = await surveyDbContext.Surveys.Where(s => s.IsEnabled == true).ToListAsync();
var surveyTranslations = await surveyDbContext.SurveysTranslation.ToListAsync();