blob: e61299af4101020b38e958e1b0011ed615a073db (
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 IAddBillPaymentView : IDockedContentView,
IView<IAddBillPaymentPresenter>,
ICallback<IEnumerable<CompanyDTO>>,
ICallback<IEnumerable<BillInformationDTO>>
{
}
}
|