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