zhaw-dnet2/Tasks/Lab7/RankingServer/IRankingService.cs

12 lines
186 B
C#

using CoreWCF;
namespace RankingServer
{
[ServiceContract]
public interface IRankingService
{
[OperationContract]
List<Competitor> RankingList();
}
}