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 GetMyPowerStations(MyUser myUser, List CityIds = null, List Where = null, List Order_by = null) //{ // List powerStations = new List(); // return powerStations; //} } }