refactor(api): Удалены лишние таблицы связанные со старой логикой получения заданий роботом.

This commit is contained in:
Mikhail Trubnikov
2023-10-06 14:24:58 +10:00
parent 9060db1fe4
commit f2329e9367
24 changed files with 2199 additions and 538 deletions

View File

@@ -16,8 +16,7 @@ namespace PARR.API.Controllers.V1
public class RobotHistoryController : BaseApiController
{
private readonly IValidator<RobotHistoryRequest> validator;
private readonly ITemplateService templateService;
private readonly IRobotTemplateHistoryService historyService;
private readonly IMapper mapper;
private readonly IUriService uriService;
private readonly IRobotHistoryService robotHistoryService;
@@ -25,8 +24,6 @@ namespace PARR.API.Controllers.V1
public RobotHistoryController(
IValidator<RobotHistoryRequest> validator,
ITemplateService templateService,
IRobotTemplateHistoryService historyService,
IMapper mapper,
IUriService uriService,
IRobotHistoryService robotHistoryService,
@@ -34,8 +31,6 @@ namespace PARR.API.Controllers.V1
)
{
this.validator = validator;
this.templateService = templateService;
this.historyService = historyService;
this.mapper = mapper;
this.uriService = uriService;
this.robotHistoryService = robotHistoryService;