feat: создана структура проекта, core, domain, infrastructure. Перенесены enum и task согласно архитектуры
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using PARR.DAL.Models.Base;
|
||||
using PARR.Domain.Entities.Base;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
@@ -7,7 +7,7 @@ namespace PARR.DAL.Models
|
||||
{
|
||||
[Table("Subprocesses")]
|
||||
[Index(nameof(EsppId), IsUnique = true)]
|
||||
public class Subprocess : IBase
|
||||
public class Subprocess : IBaseEntity
|
||||
{
|
||||
[Key]
|
||||
public Guid Id { get; set; }
|
||||
|
||||
Reference in New Issue
Block a user