blob: 241d4ed9da347e314fa6f521dd46e07635b80d9e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
using System.Collections.Generic;
using MoMoney.DTO;
using MoMoney.Presentation.Core;
using MoMoney.Presentation.Views.billing;
using MoMoney.Service.Contracts.Application;
namespace MoMoney.Presentation.Presenters.billing
{
public interface IAddBillPaymentPresenter : IContentPresenter
{
void submit_bill_payment(AddNewBillDTO dto);
}
public class AddBillPaymentPresenter : ContentPresenter<IAddBillPaymentView>, IAddBillPaymentPresenter
{
readonly ICommandPump pump;
public AddBillPaymentPresenter(IAddBillPaymentView view, ICommandPump pump) : base(view)
{
this.pump = pump;
}
public override void run()
{
view.attach_to(this);
pump
.run<IEnumerable<CompanyDTO>, IGetAllCompanysQuery>(view)
.run<IEnumerable<BillInformationDTO>, IGetAllBillsQuery>(view);
}
public void submit_bill_payment(AddNewBillDTO dto)
{
pump
.run<ISaveNewBillCommand, AddNewBillDTO>(dto)
.run<IEnumerable<BillInformationDTO>, IGetAllBillsQuery>(view);
}
}
}
|