using Microsoft.AspNetCore.Mvc;
namespace WMS_GIRAF_Interface.Controllers
{
///
///
///
[ApiController, Route("Asrs")]
public class AsrsStatusController : ControllerBase
{
private readonly IConfiguration _configuration;
public AsrsStatusController(IConfiguration configuration)
{
_configuration = configuration;
}
///
///
///
///
///
[HttpGet("[asrsIdentifier]/status")]
public bool KeepAlive([FromRoute] string asrsIdentifier)
{
return true;
}
[HttpGet("[asrsIdentifier]/stock")]
public bool GetStock(
[FromRoute] string asrsIdentifier,
[FromQuery] string sku)
{
return true;
}
}
}