Server/Services.cs
author sl
Tue, 12 Aug 2014 20:55:50 +0200
changeset 18 7acec5059fa6
parent 17 Services.cs@19c1aaf900dc
child 19 1a85ec255882
permissions -rw-r--r--
Adding our client implementation. Moving server into its own folder.
     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 }