|
using Microsoft.AspNetCore.Mvc;
|
using System;
|
using System.Collections.Generic;
|
using System.Threading.Tasks;
|
using Microsoft.Extensions.DependencyInjection;
|
using Microsoft.AspNetCore.Http;
|
using WIDESEA_Entity.DomainModels;
|
using WIDESEA_Services.IServices;
|
using WIDESEA_Core.Utilities;
|
using Microsoft.AspNetCore.Authorization;
|
|
namespace WIDESEA_Services.Controllers
|
{
|
public partial class dt_stationmanagerController
|
{
|
private readonly Idt_stationmanagerService _service;//访问业务代码
|
private readonly IHttpContextAccessor _httpContextAccessor;
|
|
[ActivatorUtilitiesConstructor]
|
public dt_stationmanagerController(
|
Idt_stationmanagerService service,
|
IHttpContextAccessor httpContextAccessor
|
)
|
: base(service)
|
{
|
_service = service;
|
_httpContextAccessor = httpContextAccessor;
|
}
|
|
}
|
}
|