FIC_Solar/SolarPower/Repository/Interface/IStationReportRepository.cs
2021-08-05 15:46:03 +08:00

17 lines
521 B
C#

using SolarPower.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace SolarPower.Repository.Interface
{
public interface IStationReportRepository : IRepositoryBase<StationReport>
{
Task<List<string>> GetInverterId(string DBname, Select_table post);
Task<dynamic> Gettablebody(Select_table post);
Task<List<Landinfo>> GetHire(PsIdAndSiteDB post);
Task<List<MaxFormbody>> GetMaxtablebody(Select_table2 post);
}
}