main
1using MoMoney.Presentation.Model.reporting;
2using momoney.presentation.views;
3
4namespace MoMoney.Presentation.Views
5{
6 public interface IReportViewer : IDockedContentView
7 {
8 void display(IReport report);
9 }
10}