using Microsoft.AspNetCore.Mvc;
|
using WIDESEA_BusinessServices;
|
using WIDESEA_Core.BaseController;
|
using WIDESEA_IBusinessServices;
|
using WIDESEA_IOrderServices;
|
using WIDESEA_Model.Models;
|
using WIDESEA_Model.Models.Basic;
|
using WIDESEA_Model.Models.Order;
|
using WIDESEAWCS_BasicInfoService;
|
|
namespace WIDESEA_WMSServer.Controllers
|
{
|
[Route("api/OtherOutboundOrderDetail")]
|
[ApiController]
|
public class OtherOutboundOrderDetailController : ApiBaseController<IDt_OtherOutboundOrderDetailService, Dt_OtherOutboundOrderDetail>
|
{
|
private readonly IHttpContextAccessor _httpContextAccessor;
|
public OtherOutboundOrderDetailController(IDt_OtherOutboundOrderDetailService service, IHttpContextAccessor httpContextAccessor) : base(service)
|
{
|
_httpContextAccessor = httpContextAccessor;
|
}
|
|
}
|
}
|