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.
sl@17
     1
using System;
sl@17
     2
using System.ServiceModel;
sl@17
     3
sl@17
     4
namespace SharpDisplayManager
sl@17
     5
{
sl@17
     6
    [ServiceContract]
sl@17
     7
    public interface IDisplayService
sl@17
     8
    {
sl@17
     9
        [OperationContract]
sl@17
    10
        void SetText(int aLineIndex, string aText);
sl@17
    11
    }
sl@17
    12
}