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