main
 1namespace presentation.windows
 2{
 3    public class CancelCommand : UICommand<DialogPresenter>
 4    {
 5        protected override void run(DialogPresenter presenter)
 6        {
 7            presenter.close();
 8        }
 9    }
10}