using Microsoft.AspNetCore.Mvc; using WIDESEAWCS_Core.BaseController; using WIDESEAWCS_ISystemServices; using WIDESEAWCS_Model.Models; namespace WIDESEAWCS_Server.Controllers.System { [Route("api/Station")] [ApiController] public class StationInfoController : ApiBaseController { private readonly IHttpContextAccessor _httpContextAccessor; public StationInfoController(Idt_StationinfoService service, IHttpContextAccessor httpContextAccessor) : base(service) { _httpContextAccessor = httpContextAccessor; } } }