using Autofac.Core; using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; using WIDESEA_Core.BaseController; using WIDESEA_IServices; using WIDESEA_IServices.System; using WIDESEA_Model.Models; using WIDESEA_Services; namespace WIDESEA_WMSServer.Controllers.Basic { [Route("api/[controller]")] [ApiController] public class LocationController : ApiBaseController { private readonly IHttpContextAccessor _httpContextAccessor; public LocationController(IDt_LocationService service, IHttpContextAccessor httpContextAccessor) : base(service) { _httpContextAccessor = httpContextAccessor; } } }