feat: создана структура проекта, core, domain, infrastructure. Перенесены enum и task согласно архитектуры
This commit is contained in:
@@ -2,11 +2,11 @@
|
||||
using Microsoft.Extensions.Logging;
|
||||
using PARR.Constants;
|
||||
using PARR.DAL.Models;
|
||||
using PARR.DAL.Models.Base;
|
||||
using PARR.DAL.Models.Job;
|
||||
using PARR.DAL.Services.Interfaces;
|
||||
using PARR.DAL.Services.Interfaces.Base;
|
||||
using PARR.DAL.Services.Interfaces.Job;
|
||||
using PARR.Domain.Entities.Base;
|
||||
|
||||
namespace PARR.TemplateActivator;
|
||||
|
||||
@@ -44,7 +44,7 @@ internal class ValidatorService : IValidatorService
|
||||
|
||||
private async Task<bool> IsValidAync<TService, TEntity>(Guid id)
|
||||
where TService : class, IBaseService<TEntity>
|
||||
where TEntity : class, IBase
|
||||
where TEntity : class, IBaseEntity
|
||||
{
|
||||
using (var scope = serviceProvider.CreateScope())
|
||||
{
|
||||
|
||||
@@ -2,7 +2,6 @@
|
||||
using Microsoft.Extensions.Logging;
|
||||
using PARR.BLL.Domain.Mq;
|
||||
using PARR.Constants;
|
||||
using PARR.DAL.Contracts;
|
||||
using PARR.DAL.Models;
|
||||
using PARR.DAL.Services.Interfaces;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user