Services.cs
author sl
Tue, 12 Aug 2014 20:37:57 +0200
changeset 17 19c1aaf900dc
permissions -rw-r--r--
Adding WCF server implementation.
     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 }