1 using System;
2 using System.ServiceModel;
3
4 namespace SharpDisplayManager
5 {
6 [ServiceContract]
7 public interface IDisplayService
8 {
9 [OperationContract]
10 void SetText(int aLineIndex, string aText);
11 }
12 }