Add Report Designer Feature

This commit is contained in:
Suphonchai Phoonsawat 2023-08-28 11:02:28 +07:00
parent e8098ff43f
commit aed9fb5051
7 changed files with 165 additions and 45 deletions

View file

@ -0,0 +1,17 @@
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)
{
}
}
}