summaryrefslogtreecommitdiff
path: root/product/Presentation/Views/IAddNewIncomeView.cs
blob: 0eb5ffaeae8d9b303503713a22e804bda0be4a46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System.Collections.Generic;
using Gorilla.Commons.Utility.Core;
using MoMoney.DTO;
using MoMoney.Presentation.Presenters;

namespace MoMoney.Presentation.Views
{
    public interface IAddNewIncomeView : IDockedContentView,
                                         IView<IAddNewIncomePresenter>,
                                         ICallback<IEnumerable<CompanyDTO>>,
                                         ICallback<IEnumerable<IncomeInformationDTO>>
    {
    }
}