main
 1using MoMoney.Presentation.Presenters;
 2
 3namespace momoney.presentation.presenters
 4{
 5    public class Build
 6    {
 7        public static IExpandoBuilder task_pane()
 8        {
 9            return new ExpandoBuilder();
10        }
11
12        public static IExpandoItemBuilder task_pane_item()
13        {
14            return new ExpandoItemBuilder();
15        }
16    }
17}