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 IViewAllIncomeReport : IBindReportTo<IEnumerable<IncomeInformationDTO>, IGetAllIncomeQuery>
9 {
10 }
11}