main
1using System.Collections.Generic;
2using MoMoney.DTO;
3using MoMoney.Presentation.Model.reporting;
4using MoMoney.Service.Contracts.Application;
5
6namespace MoMoney.Presentation.Views
7{
8 public interface IViewAllBillsReport : IBindReportTo<IEnumerable<BillInformationDTO>, IGetAllBillsQuery>
9 {
10 }
11}