FIC_Solar/SolarPower/Repository/Implement/AnalysisStationCombineRepository.cs
2021-07-16 16:12:55 +08:00

19 lines
538 B
C#

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<AnalysisStationCombine>, IAnalysisStationCombineRepository
{
public AnalysisStationCombineRepository(IDatabaseHelper databaseHelper) : base(databaseHelper)
{
tableName = "power_station";
}
}
}