BmpWinFormsEventBus.cs 306 B

1234567891011
  1. using Bmp.Core.Common.AssemblyInject.Interfaces;
  2. using Bmp.Core.Common.EventBus;
  3. namespace Bmp.WinForms;
  4. internal class BmpWinFormsEventBus : InProcessEventBusBase, IAssemblyInjectSingleton<IEventBus>
  5. {
  6. public BmpWinFormsEventBus(ILogger<InProcessEventBusBase> logger) : base(logger)
  7. {
  8. }
  9. }