public void Register(IServiceLocator serviceLocator)
        {
            try
            {
                serviceLocator.Resolve<ISimpleCqrsRuntime>();
                return;
            }
            catch (Exception exception)
            {

            }

            RegisterAndStartRuntime();
        }
 public SimpleCqrsRuntimeBootstrapper(IServiceLocator serviceLocator)
 {
     this.serviceLocator = serviceLocator;
 }