auto.bus_api/Server/Controllers/AutomationController.cs
cuqmbr 20def5de44 feat: add "Popular routes" statistics
feat: add financial report generation

feat: add automation task: indirect route search
2022-12-09 11:54:14 +02:00

31 lines
711 B
C#

using Microsoft.AspNetCore.Mvc;
using Server.Services;
namespace Server.Controllers;
[Route("api/[controller]")]
[ApiController]
public class AutomationController : ControllerBase
{
private readonly AutomationService _automationService;
public AutomationController(AutomationService automationService)
{
_automationService = automationService;
}
[HttpGet]
public async Task<IActionResult> GetRoute(int from, int to, DateTime date)
{
var result = await _automationService.GetRoute(from, to, date);
if (!result.isSucceed)
{
return result.actionResult;
}
return Ok(result.result);
}
}