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