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

namespace MoMoney.Presentation.Views
{
    public interface IViewAllBills : IDockedContentView,
                                     IView<IViewAllBillsPresenter>,
                                     ICallback<IEnumerable<BillInformationDTO>>
    {
    }
}