using SolarPower.Helper; using SolarPower.Models; using SolarPower.Repository.Interface; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace SolarPower.Repository.Implement { public class AnalysisStationCombineRepository : RepositoryBase, IAnalysisStationCombineRepository { public AnalysisStationCombineRepository(IDatabaseHelper databaseHelper) : base(databaseHelper) { tableName = "power_station"; } } }