12 lines
186 B
C#
12 lines
186 B
C#
|
using CoreWCF;
|
|||
|
|
|||
|
namespace RankingServer
|
|||
|
{
|
|||
|
[ServiceContract]
|
|||
|
public interface IRankingService
|
|||
|
{
|
|||
|
[OperationContract]
|
|||
|
List<Competitor> RankingList();
|
|||
|
}
|
|||
|
}
|