using Microsoft.AspNetCore.Mvc; using WIDESEAWCS_Core.BaseController; using WIDESEAWCS_IBasicInfoService; using WIDESEAWCS_Model.Models.BasicInfo; namespace WIDESEAWCS_Server.Controllers.BasicInfo { [Route("api/Dt_StationManager")] [ApiController] public class Dt_StationManagerController : ApiBaseController { private readonly IHttpContextAccessor _httpContextAccessor; public Dt_StationManagerController(IDt_StationManagerService service, IHttpContextAccessor httpContextAccessor) : base(service) { _httpContextAccessor = httpContextAccessor; } } }