public IEnumerable<IResult> EditActiveProfile()
        {
            var editor = new EditProfileDialog
                         {
                             Name = ActiveProfile.Name,
                             CPS = ActiveProfile.CPS
                         };

            yield return editor.AsResult()
                .PrefixViewContextWith("EditProfile")
                .CancelOnResponse(Answer.Cancel);

            ActiveProfile.Name = editor.Name;
            ActiveProfile.CPS = editor.CPS;
        }