feat: разделение на repository - services
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using Microsoft.Extensions.Logging;
|
||||
using PARR.BLL.Contracts.Interfaces;
|
||||
using PARR.DAL.Services.Interfaces.TaskServices;
|
||||
using PARR.Core.Repositories.Interfaces.TaskRepositories;
|
||||
using PARR.Domain.Entities.Base.History;
|
||||
using PARR.Domain.Entities.TaskEntities;
|
||||
using PARR.Domain.Enums;
|
||||
@@ -13,13 +13,13 @@ namespace PARR.DAL.TaskServices
|
||||
internal class TaskManagementService : ITaskManagementService
|
||||
{
|
||||
private readonly ILogger<TaskManagementService> logger;
|
||||
private readonly ITaskTypeService taskTypeService;
|
||||
private readonly ITaskService taskService;
|
||||
private readonly ITaskTypeRepository taskTypeService;
|
||||
private readonly ITaskRepository taskService;
|
||||
|
||||
public TaskManagementService(
|
||||
ILogger<TaskManagementService> logger,
|
||||
ITaskTypeService taskTypeService,
|
||||
ITaskService taskService
|
||||
ITaskTypeRepository taskTypeService,
|
||||
ITaskRepository taskService
|
||||
)
|
||||
{
|
||||
this.logger = logger;
|
||||
|
||||
Reference in New Issue
Block a user