Dockerise Sprint 2 Code with bug fix

This commit is contained in:
Santhosh S
2023-08-28 01:03:24 -04:00
parent 96ccb96bf1
commit 82cfa5706a
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();