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