using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; using WIDESEA_ISquareCabinServices; using WIDESEA_Model.Models.SquareCabin; namespace WIDESEA_WMSServer.Controllers { [Route("api/Inventory")] [ApiController] public class InventoryController : ApiBaseController { public InventoryController(IInventoryServices service) : base(service) { } } }