private void ChooseStampColorExecute(object obj)
        {
            var interaction = new ColorInteraction();

            interaction.Color = CurrentProfile.Stamping.Color;

            _interactionInvoker.Invoke(interaction);

            if (!interaction.Success)
            {
                return;
            }

            CurrentProfile.Stamping.Color = interaction.Color;
            RaisePropertyChanged(nameof(CurrentProfile));
        }
 public void Invoke(ColorInteraction interaction)
 {
     throw new NotImplementedException();
 }