FIC_Solar/SolarPower/Services/Implement/MyPowerStationService.cs
Kai 821599ce31 1. bug fix
2. 修改權限
3. 電站交叉分析 不預設
2021-08-30 15:50:43 +08:00

27 lines
833 B
C#

using SolarPower.Models;
using SolarPower.Models.PowerStation;
using SolarPower.Repository.Interface;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace SolarPower.Services.Implement
{
public class MyPowerStationService
{
private readonly IPowerStationRepository powerStationRepository;
public MyPowerStationService(IPowerStationRepository powerStationRepository)
{
this.powerStationRepository = powerStationRepository;
}
//public List<PowerStation> GetMyPowerStations(MyUser myUser, List<int> CityIds = null, List<string> Where = null, List<OrderBy> Order_by = null)
//{
// List<PowerStation> powerStations = new List<PowerStation>();
// return powerStations;
//}
}
}