blob: 76b57516168fc050b2970d7ba8f3158db7564093 (
plain)
1
2
3
4
5
6
7
8
9
10
|
using MoMoney.Presentation.Model.reporting;
using MoMoney.Presentation.Views.Core;
namespace MoMoney.Presentation.Views
{
public interface IReportViewer : IDockedContentView
{
void display(IReport report);
}
}
|