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 IAddNewIncomeView : IDockedContentView,
10                                         IView<IAddNewIncomePresenter>,
11                                         Callback<IEnumerable<CompanyDTO>>,
12                                         Callback<IEnumerable<IncomeInformationDTO>> {}
13}