1.1 --- a/Client/Client.cs Mon Sep 01 19:23:36 2014 +0200
1.2 +++ b/Client/Client.cs Sun Sep 21 13:15:52 2014 +0200
1.3 @@ -4,7 +4,7 @@
1.4 using System.Text;
1.5 using System.Threading.Tasks;
1.6 using System.Windows.Forms;
1.7 -using SharpDisplayInterface;
1.8 +using SharpDisplay;
1.9 using System.ServiceModel;
1.10 using System.ServiceModel.Channels;
1.11
1.12 @@ -15,7 +15,7 @@
1.13 ///
1.14 /// </summary>
1.15 [ServiceBehavior(ConcurrencyMode = ConcurrencyMode.Multiple)]
1.16 - public class Callback : IDisplayServiceCallback, IDisposable
1.17 + public class Callback : ICallback, IDisposable
1.18 {
1.19 private MainForm MainForm { get; set; }
1.20
1.21 @@ -55,7 +55,7 @@
1.22 ///
1.23 /// </summary>
1.24 [ServiceBehavior(ConcurrencyMode = ConcurrencyMode.Multiple)]
1.25 - public class Client : DuplexClientBase<IDisplayService>
1.26 + public class Client : DuplexClientBase<IService>
1.27 {
1.28 public string Name { get; set; }
1.29 public string SessionId { get { return InnerChannel.SessionId; } }