刘磊
2025-06-10 87b6fc65bc3b6cce03af04758db82236d29bc7e5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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;
    }
 
}