18 lines
673 B
C#
18 lines
673 B
C#
|
|
using Microsoft.AspNetCore.Mvc;
|
|||
|
|
using Telerik.Reporting.Services;
|
|||
|
|
using Telerik.WebReportDesigner.Services;
|
|||
|
|
using Telerik.WebReportDesigner.Services.Controllers;
|
|||
|
|
|
|||
|
|
namespace BMA.EHR.Report.Service.Controllers
|
|||
|
|
{
|
|||
|
|
[Route("api/reportdesigner")]
|
|||
|
|
public class ReportDesignerController : ReportDesignerControllerBase
|
|||
|
|
{
|
|||
|
|
public ReportDesignerController(IReportDesignerServiceConfiguration reportDesignerServiceConfiguration,
|
|||
|
|
IReportServiceConfiguration reportServiceConfiguration)
|
|||
|
|
: base(reportDesignerServiceConfiguration, reportServiceConfiguration)
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|