main
 1using System;
 2using System.ComponentModel;
 3
 4namespace momoney.presentation.views
 5{
 6    public interface IRegionManager
 7    {
 8        void region<T>(Action<T> action) where T : IComponent;
 9    }
10}