feat(dal): Созданы таблицы схемы Job

This commit is contained in:
Mikhail Kuznetsov
2025-06-04 11:55:23 +10:00
parent 7b1c676507
commit 50ef7dee5c
18 changed files with 8117 additions and 10 deletions

View File

@@ -2,6 +2,7 @@
using PARR.Constants;
using PARR.DAL.Contracts;
using PARR.DAL.Models;
using PARR.DAL.Models.Job;
using PARR.DAL.Models.Unit;
namespace PARR.DAL.Context
@@ -82,6 +83,16 @@ namespace PARR.DAL.Context
#endregion
#region Job
public DbSet<FieldFilter> FieldFilters { get; set; }
public DbSet<Job> Jobs { get; set; }
public DbSet<JobDetails> JobDetails { get; set; }
#endregion
protected override void OnModelCreating(ModelBuilder modelBuilder)
{

View File

@@ -7,5 +7,11 @@
/// </summary>
public const string Unit = "unit";
/// <summary>
/// Хранение информации о видах работ, критериях выборки подходящих под работы ЭК и т.д.
/// </summary>
public const string Job = "job";
}
}