14 lines
300 B
C#
14 lines
300 B
C#
using SolarPower.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SolarPower.Repository.Interface
|
|
{
|
|
public interface IOperationRepository
|
|
{
|
|
Task<List<PowerStationIdList>> GetPowerStationIdList(int UserId);
|
|
}
|
|
}
|