15 lines
360 B
C#
15 lines
360 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);
|
|
}
|
|
}
|