using Microsoft.AspNetCore.Mvc;
|
using WIDESEA_BusinessServices;
|
using WIDESEA_Core.BaseController;
|
using WIDESEA_IBusinessServices;
|
using WIDESEA_Model.Models;
|
using WIDESEAWCS_BasicInfoService;
|
using WIDESEAWCS_Model.Models;
|
|
namespace WIDESEA_WMSServer.Controllers
|
{
|
[Route("api/Dt_SelectionStandards")]
|
[ApiController]
|
public class Dt_SelectionStandardsController : ApiBaseController<IDt_SelectionStandardsService, Dt_SelectionStandards>
|
{
|
private readonly IHttpContextAccessor _httpContextAccessor;
|
public Dt_SelectionStandardsController(IDt_SelectionStandardsService service, IHttpContextAccessor httpContextAccessor) : base(service)
|
{
|
_httpContextAccessor = httpContextAccessor;
|
}
|
|
}
|
}
|