Add Report Designer Feature
This commit is contained in:
parent
e8098ff43f
commit
aed9fb5051
7 changed files with 165 additions and 45 deletions
|
|
@ -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)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue