Commands return immediately and signalr is used to control the UI

This commit is contained in:
Mark McDowall
2013-08-30 20:08:19 -07:00
parent 772ab3c921
commit c96ba5efd3
55 changed files with 439 additions and 238 deletions

View File

@@ -76,7 +76,7 @@ namespace NzbDrone.Common.Test.EventingTests
public class CommandA : ICommand
{
public String CommandId { get; set; }
public String CommandId { get; private set; }
// ReSharper disable UnusedParameter.Local
public CommandA(int id = 0)
// ReSharper restore UnusedParameter.Local
@@ -87,7 +87,7 @@ namespace NzbDrone.Common.Test.EventingTests
public class CommandB : ICommand
{
public String CommandId { get; set; }
public String CommandId { get; private set; }
public CommandB()
{