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 { private readonly IPowerStationRepository powerStationRepository; public AnalysisInverterController(IPowerStationRepository powerStationRepository) : base() { this.powerStationRepository = powerStationRepository; } public IActionResult Index() { return View(); } } }