using Microsoft.AspNetCore.Mvc;
|
using WIDESEAWCS_Core.BaseController;
|
using WIDESEAWCS_IBasicInfoService;
|
using WIDESEAWCS_Model.BasicInfo;
|
|
namespace WIDESEAWCS_Server.Controllers.BasicInfo
|
{
|
[Route("api/Dt_WMSErrorMessage")]
|
[ApiController]
|
public class Dt_WMSErrorMessageController : ApiBaseController<IDt_WMSErrorMessageService, Dt_WMSErrorMessage>
|
{
|
private readonly IHttpContextAccessor _httpContextAccessor;
|
public Dt_WMSErrorMessageController(IDt_WMSErrorMessageService service, IHttpContextAccessor httpContextAccessor) : base(service)
|
{
|
_httpContextAccessor = httpContextAccessor;
|
}
|
|
|
}
|
}
|