FIC_Solar/SolarPower/Controllers/AnalysisInverterController.cs
Kai 8664bda0d5 1. bug fix
2. 畫面調整
3.選單調整
2021-07-20 10:02:59 +08:00

29 lines
684 B
C#

using Microsoft.AspNetCore.Mvc;
using SolarPower.Models;
using SolarPower.Repository.Interface;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace SolarPower.Controllers
{
public class AnalysisInverterController : MyBaseController<AnalysisInverterController>
{
private readonly IPowerStationRepository powerStationRepository;
public AnalysisInverterController(IPowerStationRepository powerStationRepository) : base()
{
this.powerStationRepository = powerStationRepository;
}
public IActionResult Index()
{
return View();
}
}
}