using AutoMapper.Configuration.Annotations; using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; using WIDESEA_Core.BaseController; using WIDESEA_DTO; using WIDESEA_IStoragIntegrationServices; namespace WIDESEA_WMSServer.Controllers; [Route("api/[controller]")] [ApiController] public class locationInfoRowController : Controller { private readonly IMCSService _MCSService; private readonly IHttpContextAccessor _httpContextAccessor; public locationInfoRowController(IMCSService MCSService, IHttpContextAccessor httpContextAccessor) { _httpContextAccessor = httpContextAccessor; _MCSService = MCSService; } }