CQRS.Talk.Refactoring2.Commands._3.Interfaces.ServiceConsumer.CancelSessionDelegateFromSession C# (CSharp) Method

CancelSessionDelegateFromSession() private method

private CancelSessionDelegateFromSession ( UpdateDelegateCommand command ) : ActionResult
command UpdateDelegateCommand
return ActionResult
        public ActionResult CancelSessionDelegateFromSession(UpdateDelegateCommand command)
        {
            updateHandler.Handle(command);

            return RedirectToAction("Index", "Session");
        }
    }