diff --git a/AsbCloudDb/Model/AsbCloudDbContext.cs b/AsbCloudDb/Model/AsbCloudDbContext.cs index 4b6e339f..9a8b6a05 100644 --- a/AsbCloudDb/Model/AsbCloudDbContext.cs +++ b/AsbCloudDb/Model/AsbCloudDbContext.cs @@ -89,7 +89,6 @@ namespace AsbCloudDb.Model public DbSet Manuals => Set(); public DbSet ManualDirectories => Set(); public DbSet Contacts => Set(); - public DbSet WellSectionPlans => Set(); public DbSet DrillTests => Set(); public AsbCloudDbContext() : base() diff --git a/AsbCloudInfrastructure/Repository/WellSectionPlanRepository.cs b/AsbCloudInfrastructure/Repository/WellSectionPlanRepository.cs index f50cd7a0..c9963838 100644 --- a/AsbCloudInfrastructure/Repository/WellSectionPlanRepository.cs +++ b/AsbCloudInfrastructure/Repository/WellSectionPlanRepository.cs @@ -64,6 +64,7 @@ public class WellSectionPlanRepository : CrudWellRelatedRepositoryBase : IProcessMapPlanService { new($"Конструкция секции: {wellSectionType?.Caption}; " + $"Интервал бурения от {processMapPlan.DepthStart} до {processMapPlan.DepthEnd} не совпадает с данными указанными на странице " + - $"Конструкция скважины / План") + $"Конструкция скважины / План", new[] { nameof(processMapPlan.DepthStart), nameof(processMapPlan.DepthEnd) }) }; return validationResult;