FIC_Solar/SolarPower/Repository/Interface/IStationReportRepository.cs
2021-07-29 18:04:55 +08:00

16 lines
452 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);
}
}