FIC_Solar/SolarPower/Repository/Interface/IPowerStationRepository.cs
Kai 32973c35a1 1. 修改電站基本資料
2. 加入電站Repository
2021-06-15 20:37:09 +08:00

13 lines
274 B
C#

using SolarPower.Models.PowerStation;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace SolarPower.Repository.Interface
{
public interface IPowerStationRepository : IRepositoryBase<PowerStation>
{
}
}