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

12 lines
186 B
C#
Raw Normal View History

2024-06-06 13:04:51 +00:00
using CoreWCF;
namespace RankingServer
{
[ServiceContract]
public interface IRankingService
{
[OperationContract]
List<Competitor> RankingList();
}
}