protected void RegisterTouchViewCreator(MvxMacViewsContainer container)
 {
     Mvx.RegisterSingleton<IMvxMacViewCreator>(container);
 }
 protected void RegisterMacViewCreator(MvxMacViewsContainer container)
 {
     Mvx.RegisterSingleton<IMvxMacViewCreator>(container);
     Mvx.RegisterSingleton<IMvxCurrentRequest>(container);
 }
        protected sealed override MvxViewsContainer CreateViewsContainer()
        {
			var container = new MvxMacViewsContainer();
            RegisterTouchViewCreator(container);            
            return container;
        }