main
 1using System.Collections.Generic;
 2using gorilla.commons.utility;
 3using MoMoney.DTO;
 4using MoMoney.Presentation.Presenters;
 5using momoney.presentation.views;
 6
 7namespace MoMoney.Presentation.Views
 8{
 9    public interface IAddCompanyView : IDockedContentView,
10                                       IView<IAddCompanyPresenter>,
11                                       Callback<IEnumerable<CompanyDTO>> {}
12}