using Microsoft.AspNetCore.Mvc;
|
using WIDESEA_BusinessServices;
|
using WIDESEA_Core.BaseController;
|
using WIDESEA_IBusinessServices;
|
using WIDESEA_Model.Models;
|
|
namespace WIDESEA_WMSServer.Controllers.System
|
{
|
[Route("api/Dt_InboundOrderProductionDetail")]
|
[ApiController]
|
public class Dt_InboundOrderProductionDetailController : ApiBaseController<IDt_InboundOrderProductionDetailService, Dt_InboundOrderProductionDetail>
|
{
|
private readonly IHttpContextAccessor _httpContextAccessor;
|
public Dt_InboundOrderProductionDetailController(IDt_InboundOrderProductionDetailService service, IHttpContextAccessor httpContextAccessor) : base(service)
|
{
|
_httpContextAccessor = httpContextAccessor;
|
}
|
|
}
|
}
|