16 lines
419 B
C#
16 lines
419 B
C#
using SolarPower.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SolarPower.Repository.Interface
|
|
{
|
|
public interface IAnalysisStationCombineRepository :IRepositoryBase<AnalysisStationCombine>
|
|
{
|
|
|
|
Task<AnalysisStationCombine> GetPowerStationInfoList(ChartInput post);
|
|
Task<List<Chartoutput>> GetChart(ChartInput post);
|
|
}
|
|
}
|