public void Handle(AccountCreatedEvent msg)
 {
     _modelBuilder.Add(new TransactionHistory
     {
         BalanceId = msg.BalanceId,
         EventType = typeof(AccountCreatedEvent).Name,
         Event     = msg.ToPropsString(),
         Id        = Guid.NewGuid(),
         Time      = DateTimeFacade.Now
     });
 }