using Microsoft.AspNetCore.Mvc; using WIDESEA_Core.BaseController; using WIDESEA_Core; using WIDESEA_IInboundService; using WIDESEA_Model.Models; namespace WIDESEA_WMSServer.Controllers.Inbound { [Route("api/CPInboundOrderDetail")] [ApiController] public class CPInboundOrderDetailController : ApiBaseController { public CPInboundOrderDetailController(ICPInboundOrderDetailService service) : base(service) { } } }