summaryrefslogtreecommitdiff
path: root/product/Presentation/Views/IViewIncomeHistory.cs
blob: 4379f9ee2e738c14989b64ea100a88d2734a9954 (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 IViewIncomeHistory : IDockedContentView,
                                          IView<IViewIncomeHistoryPresenter>,
                                          ICallback<IEnumerable<IncomeInformationDTO>>

    {
    }
}