blob: 349072504c536868a104e2a4592ed4846d936387 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
using System.Collections.Generic;
using Gorilla.Commons.Utility.Core;
using MoMoney.DTO;
using MoMoney.Presentation.Presenters;
using MoMoney.Presentation.Views.Core;
namespace MoMoney.Presentation.Views
{
public interface IViewIncomeHistory : IDockedContentView,
IView<IViewIncomeHistoryPresenter>,
ICallback<IEnumerable<IncomeInformationDTO>>
{
}
}
|