Server/Services.cs
changeset 19 1a85ec255882
parent 18 7acec5059fa6
child 20 e3d394dd0388
     1.1 --- a/Server/Services.cs	Tue Aug 12 20:55:50 2014 +0200
     1.2 +++ b/Server/Services.cs	Tue Aug 12 21:27:35 2014 +0200
     1.3 @@ -1,5 +1,6 @@
     1.4  using System;
     1.5  using System.ServiceModel;
     1.6 +using System.Collections;
     1.7  
     1.8  namespace SharpDisplayManager
     1.9  {
    1.10 @@ -8,5 +9,8 @@
    1.11      {
    1.12          [OperationContract]
    1.13          void SetText(int aLineIndex, string aText);
    1.14 +
    1.15 +        [OperationContract]
    1.16 +        void SetTexts(System.Collections.Generic.IList<string> aTexts);
    1.17      }
    1.18  }