using Microsoft.AspNetCore.Mvc; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using SolarPower.Models; using SolarPower.Models.SensorDetail; using SolarPower.Repository.Interface; namespace SolarPower.Repository.Interface { public interface ISensorDetailRepository : IRepositoryBase { /// /// 修改設備-細項資料 /// /// /// /// Task UpdateSensorDetailInfo(SensorDetail entity, List properties); /// /// 取得設備-細項資料 /// /// /// Task> GetAllSensorDetailAsync(int sensorTypeId); /// /// 取得設備-單一細項資料 /// /// /// Task GetOneSensorDetailAsync(int id); } }