Skip to content

Instantly share code, notes, and snippets.

@kevintsengtw
Created January 16, 2018 08:48
Show Gist options
  • Save kevintsengtw/2fa33362280ad528dfe6ba6a6d2feb70 to your computer and use it in GitHub Desktop.
Save kevintsengtw/2fa33362280ad528dfe6ba6a6d2feb70 to your computer and use it in GitHub Desktop.
IYouBikeRepository
using System;
using System.Collections.Generic;
namespace SampleWebApi.Infrastructure.Reposiotry
{
public interface IYouBikeRepository
{
/// <summary>
/// 取得所有 YouBike 場站資料.
/// </summary>
/// <returns>List&lt;YouBikeStationModel&gt;.</returns>
List<YouBikeStationModel> GetStations();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment