using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; using WIDESEAWCS_Core; using WIDESEAWCS_Core.BaseController; using WIDESEAWCS_DTO.Stock; using WIDESEAWCS_IOutboundService; using WIDESEAWCS_Model.Models; namespace WIDESEAWCS_Server.Controllers.Outbound { [Route("api/OutboundOrderDetail")] [ApiController] public class OutboundOrderDetailController : ApiBaseController { public OutboundOrderDetailController(IOutboundOrderDetailService service) : base(service) { } } }