Esempio n. 1
0
 public Task PublishUsingMedia <T>(T @event) where T : CoolEvent
 {
     ExternalBus = ExternalBus ?? CommonServiceLocator.ServiceLocator.Current.GetInstance <IExternalBus>();
     return(ExternalBus.PublishUsingMedia <T>(@event));
 }
Esempio n. 2
0
 public Task SendUsingMedia <T>(T command, string destination) where T : CoolCommand
 {
     ExternalBus = ExternalBus ?? CommonServiceLocator.ServiceLocator.Current.GetInstance <IExternalBus>();
     return(ExternalBus.SendUsingMedia <T>(command, destination));
 }
Esempio n. 3
0
 public MBC3(ExternalBus ext)
 {
     this.ext     = ext;
     this.romBank = 1;
 }
Esempio n. 4
0
 private void GetAddressValueFromBus()
 {
     _targetAddress = ExternalBus.GetIntFromBitArray();
 }
Esempio n. 5
0
 public NullMBC(ExternalBus ext)
 {
     this.ext = ext;
 }
Esempio n. 6
0
 public MBC5(ExternalBus ext)
 {
     this.ext = ext;
 }