Fix scada textbox alignment

Added autoload tool from NC when database is created
WIP check option consistency
This commit is contained in:
Lucio Maranta
2019-05-14 17:27:16 +02:00
parent b443bdc44a
commit 8519c60e81
13 changed files with 413 additions and 297 deletions
@@ -594,6 +594,7 @@ namespace Step.Database.Controllers
if (families.FirstOrDefault(x => x.FamilyId == family.FamilyId) == null)
{
dbCtx.Families.Add(family);
// Set status
importStatus.Add(new DTOImportStatusModel()
{
Id = family.FamilyId,
@@ -603,6 +604,7 @@ namespace Step.Database.Controllers
}
else
{
// Set duplicated status
importStatus.Add(new DTOImportStatusModel()
{
Id = family.FamilyId,
@@ -669,5 +671,6 @@ namespace Step.Database.Controllers
return importStatus;
}
}
}