feat: Из dal перенесены все модели в Domain. Из dal переименованы service в repository, вынесены в Core.
This commit is contained in:
@@ -9,8 +9,8 @@ using PARR.API.Contracts.V1.Responses.Base;
|
||||
using PARR.API.Contracts.V1.Responses.Statistics;
|
||||
using PARR.API.Controllers.V1.Base;
|
||||
using PARR.API.Helpers;
|
||||
using PARR.Core.Repositories.Interfaces;
|
||||
using PARR.DAL.NextRunServices;
|
||||
using PARR.DAL.Services.Interfaces;
|
||||
using PARR.Domain.Common.Roles;
|
||||
|
||||
namespace PARR.API.Controllers.V1.Statistics
|
||||
@@ -21,14 +21,14 @@ namespace PARR.API.Controllers.V1.Statistics
|
||||
[Authorize(Roles = ParrRoles.Administrator.Role)]
|
||||
public class StatOrderController : BaseApiController
|
||||
{
|
||||
private readonly IOrderService orderService;
|
||||
private readonly IOrderStatusService orderStatusService;
|
||||
private readonly IOrderRepository orderService;
|
||||
private readonly IOrderStatusRepository orderStatusService;
|
||||
private readonly IMapper mapper;
|
||||
private readonly INextRunService nextRunService;
|
||||
|
||||
public StatOrderController(
|
||||
IOrderService orderService,
|
||||
IOrderStatusService orderStatusService,
|
||||
IOrderRepository orderService,
|
||||
IOrderStatusRepository orderStatusService,
|
||||
IMapper mapper,
|
||||
INextRunService nextRunService
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user