SafeDispatch/ReportsLibrary/Reports/BatchHistoryReport.cs

27 lines
692 B
C#
Raw Normal View History

2024-06-05 11:02:43 +00:00
namespace ReportsLibrary
{
using System;
using System.ComponentModel;
using System.Drawing;
using System.Windows.Forms;
using Telerik.Reporting;
using Telerik.Reporting.Drawing;
/// <summary>
/// Summary description for BatchHistoryReport.
/// </summary>
public partial class BatchHistoryReport : Telerik.Reporting.Report
{
public BatchHistoryReport()
{
/// <summary>
/// Required for telerik Reporting designer support
/// </summary>
InitializeComponent();
//
// TODO: Add any constructor code after InitializeComponent call
//
}
}
}