FIC_Solar/SolarPower/Repository/Interface/IOverviewRepository.cs
2021-07-01 09:41:36 +08:00

13 lines
253 B
C#

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