18 lines
331 B
C#
18 lines
331 B
C#
using System;
|
|
using System.Drawing;
|
|
using System.Collections;
|
|
using System.ComponentModel;
|
|
using DevExpress.XtraReports.UI;
|
|
|
|
namespace Nuvolar.Module.ReportV2
|
|
{
|
|
public partial class Invoice : DevExpress.XtraReports.UI.XtraReport
|
|
{
|
|
public Invoice()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
}
|
|
}
|