FIC_Solar/SolarPower/Controllers/PowerGenerationController.cs
2021-08-09 18:32:39 +08:00

17 lines
349 B
C#

using Microsoft.AspNetCore.Mvc;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace SolarPower.Controllers
{
public class PowerGenerationController : MyBaseController<OperationController>
{
public IActionResult Index()
{
return View();
}
}
}