13 lines
253 B
C#
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>
|
|
{
|
|
}
|
|
}
|