refactor(api): Вынес логику выставления статуса робота из контроллера в Template сервис.

This commit is contained in:
Mikhail Trubnikov
2023-10-04 13:41:33 +10:00
parent d0b75b7f58
commit 3e67c96ed1
4 changed files with 77 additions and 24 deletions

View File

@@ -0,0 +1,12 @@
using Microsoft.AspNetCore.Mvc;
using PARR.API.Controllers.V1.Base;
namespace PARR.API.Controllers.V1
{
public class RobotTemplateHistoryController : BaseApiController
{
// get
}
}