对比新文件 |
| | |
| | | 锘縰sing Microsoft.AspNetCore.Mvc; |
| | | using WIDESEA_Core.BaseController; |
| | | using WIDESEA_IBusinessServices; |
| | | using WIDESEA_Model.Models; |
| | | |
| | | namespace WIDESEA_WMSServer.Controllers |
| | | { |
| | | [Route("api/Dt_BillGroupStockDetail")] |
| | | [ApiController] |
| | | public class Dt_BillGroupStockDetailController : ApiBaseController<IDt_BillGroupStockDetailService, Dt_BillGroupStockDetail> |
| | | { |
| | | private readonly IHttpContextAccessor _httpContextAccessor; |
| | | public Dt_BillGroupStockDetailController(IDt_BillGroupStockDetailService service, IHttpContextAccessor httpContextAccessor) : base(service) |
| | | { |
| | | _httpContextAccessor = httpContextAccessor; |
| | | } |
| | | |
| | | } |
| | | } |