feat: создана структура проекта, core, domain, infrastructure. Перенесены enum и task согласно архитектуры
This commit is contained in:
@@ -1,10 +1,10 @@
|
||||
using PARR.Common.Domain;
|
||||
using PARR.DAL.DomainModels;
|
||||
using PARR.DAL.Models.Base;
|
||||
using PARR.DAL.DomainModels;
|
||||
using PARR.Domain.Entities.Base;
|
||||
using PARR.Domain.Entities.Base.History;
|
||||
|
||||
namespace PARR.DAL.Services.Interfaces.Base
|
||||
{
|
||||
public interface IBaseService<T> where T : class, IBase
|
||||
public interface IBaseService<T> where T : class, IBaseEntity
|
||||
{
|
||||
Task<T?> GetAsync(Guid id);
|
||||
IQueryable<T> Get();
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
using PARR.Constants;
|
||||
using PARR.DAL.Contracts;
|
||||
using PARR.DAL.Models;
|
||||
using PARR.DAL.Services.Interfaces.Base;
|
||||
using PARR.Domain.Enums;
|
||||
|
||||
namespace PARR.DAL.Services.Interfaces
|
||||
{
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
using PARR.Common.Domain;
|
||||
using PARR.DAL.Models;
|
||||
using PARR.DAL.Models;
|
||||
using PARR.DAL.Services.Interfaces.Base;
|
||||
using PARR.Domain.Entities.Base.History;
|
||||
|
||||
namespace PARR.DAL.Services.Interfaces
|
||||
{
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
using PARR.DAL.Models.TaskModels;
|
||||
using PARR.DAL.Services.Interfaces.Base;
|
||||
using PARR.DAL.Services.Interfaces.Base;
|
||||
using PARR.Domain.Entities.TaskEntities;
|
||||
|
||||
namespace PARR.DAL.Services.Interfaces.TaskServices
|
||||
{
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
using PARR.DAL.Models.TaskModels;
|
||||
using PARR.DAL.Services.Interfaces.Base;
|
||||
using PARR.DAL.Services.Interfaces.Base;
|
||||
using PARR.Domain.Entities.TaskEntities;
|
||||
|
||||
namespace PARR.DAL.Services.Interfaces.TaskServices
|
||||
{
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
using PARR.DAL.Models.TaskModels;
|
||||
using PARR.Domain.Entities.TaskEntities;
|
||||
|
||||
namespace PARR.DAL.Services.Interfaces.TaskServices
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user