main
1using System.Collections.Generic;
2using gorilla.commons.utility;
3using MoMoney.DTO;
4using momoney.presentation.presenters;
5
6namespace momoney.presentation.views
7{
8 public interface IAddBillPaymentView : IDockedContentView,
9 IView<IAddBillPaymentPresenter>,
10 Callback<IEnumerable<CompanyDTO>>,
11 Callback<IEnumerable<BillInformationDTO>> {}
12}