29 lines
684 B
C#
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();
|
|
}
|
|
|
|
|
|
}
|
|
}
|