/// <inheritdoc />
 public void DumpVocalEffects(IPatchPart vocalFx, int deviceId)
 {
     using (var output = new OutputDevice(deviceId))
     {
         _logger.DataDump("Dumping Patch.VocalEffect");
         output.Send(SysExUtils.GetMessage(_vfxEffectsOffset, vocalFx.GetBytes()));
     }
 }
 /// <inheritdoc />
 public void DumpCommon(IPatchPart common, int deviceId)
 {
     using (var output = new OutputDevice(deviceId))
     {
         _logger.DataDump("Dumping Patch.Common");
         output.Send(SysExUtils.GetMessage(_commonOffset, common.GetBytes()));
     }
 }