feat(dal,aihitloader): Создали таблицы схемы Units и сервисы к ним.
This commit is contained in:
@@ -100,8 +100,11 @@ namespace PARR.DAL.Services.Abstracts
|
||||
/// <param name="obj"></param>
|
||||
private void DateModifiedResolver(EntityEntry obj)
|
||||
{
|
||||
if (obj.Entity is IBase)
|
||||
(obj.Entity as IBase)!.DateModified = DateTimeOffset.UtcNow;
|
||||
//if (obj.Entity is IBase)
|
||||
// (obj.Entity as IBase)!.DateModified = DateTimeOffset.UtcNow;
|
||||
|
||||
if (obj.Entity is IBaseDateModified)
|
||||
(obj.Entity as IBaseDateModified)!.DateModified = DateTimeOffset.UtcNow;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
||||
23
PARR.DAL/Services/Implementations/Unit/UnitFieldService.cs
Normal file
23
PARR.DAL/Services/Implementations/Unit/UnitFieldService.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using Microsoft.Extensions.Logging;
|
||||
using PARR.DAL.Context;
|
||||
using PARR.DAL.Models.Unit;
|
||||
using PARR.DAL.Services.Abstracts;
|
||||
using PARR.DAL.Services.Interfaces.Unit;
|
||||
|
||||
namespace PARR.DAL.Services.Implementations.Unit
|
||||
{
|
||||
internal class UnitFieldService : BaseService<UnitField>, IUnitFieldService
|
||||
{
|
||||
private readonly DataContext dataContext;
|
||||
|
||||
protected override DbSet<UnitField> EntitySet => dataContext.UnitFields;
|
||||
|
||||
protected override DataContext EntitiContext => dataContext;
|
||||
|
||||
public UnitFieldService(DataContext dataContext, ILogger<UnitFieldService> logger) : base(logger)
|
||||
{
|
||||
this.dataContext = dataContext;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,23 @@
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using Microsoft.Extensions.Logging;
|
||||
using PARR.DAL.Context;
|
||||
using PARR.DAL.Models.Unit;
|
||||
using PARR.DAL.Services.Abstracts;
|
||||
using PARR.DAL.Services.Interfaces.Unit;
|
||||
|
||||
namespace PARR.DAL.Services.Implementations.Unit
|
||||
{
|
||||
internal class UnitFieldValueService : BaseService<UnitFieldValue>, IUnitFieldValueService
|
||||
{
|
||||
private readonly DataContext dataContext;
|
||||
|
||||
protected override DbSet<UnitFieldValue> EntitySet => dataContext.UnitFieldValues;
|
||||
|
||||
protected override DataContext EntitiContext => dataContext;
|
||||
|
||||
public UnitFieldValueService(DataContext dataContext, ILogger<UnitFieldValueService> logger) : base(logger)
|
||||
{
|
||||
this.dataContext = dataContext;
|
||||
}
|
||||
}
|
||||
}
|
||||
22
PARR.DAL/Services/Implementations/Unit/UnitService.cs
Normal file
22
PARR.DAL/Services/Implementations/Unit/UnitService.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using Microsoft.Extensions.Logging;
|
||||
using PARR.DAL.Context;
|
||||
using PARR.DAL.Services.Abstracts;
|
||||
using PARR.DAL.Services.Interfaces.Unit;
|
||||
|
||||
namespace PARR.DAL.Services.Implementations.Unit
|
||||
{
|
||||
internal class UnitService : BaseService<Models.Unit.Unit>, IUnitService
|
||||
{
|
||||
private readonly DataContext dataContext;
|
||||
|
||||
protected override DbSet<Models.Unit.Unit> EntitySet => dataContext.Units;
|
||||
|
||||
protected override DataContext EntitiContext => dataContext;
|
||||
|
||||
public UnitService(DataContext dataContext, ILogger<UnitService> logger) : base(logger)
|
||||
{
|
||||
this.dataContext = dataContext;
|
||||
}
|
||||
}
|
||||
}
|
||||
9
PARR.DAL/Services/Interfaces/Unit/IUnitFieldService.cs
Normal file
9
PARR.DAL/Services/Interfaces/Unit/IUnitFieldService.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
using PARR.DAL.Models.Unit;
|
||||
using PARR.DAL.Services.Interfaces.Base;
|
||||
|
||||
namespace PARR.DAL.Services.Interfaces.Unit
|
||||
{
|
||||
public interface IUnitFieldService: IBaseService<UnitField>
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
using PARR.DAL.Models.Unit;
|
||||
using PARR.DAL.Services.Interfaces.Base;
|
||||
|
||||
namespace PARR.DAL.Services.Interfaces.Unit
|
||||
{
|
||||
internal interface IUnitFieldValueService: IBaseService<UnitFieldValue>
|
||||
{
|
||||
}
|
||||
}
|
||||
8
PARR.DAL/Services/Interfaces/Unit/IUnitService.cs
Normal file
8
PARR.DAL/Services/Interfaces/Unit/IUnitService.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
using PARR.DAL.Services.Interfaces.Base;
|
||||
|
||||
namespace PARR.DAL.Services.Interfaces.Unit
|
||||
{
|
||||
public interface IUnitService : IBaseService<Models.Unit.Unit>
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user