12 lines
230 B
C#
12 lines
230 B
C#
|
|
using Microsoft.AspNetCore.Http;
|
|||
|
|
using Microsoft.AspNetCore.Mvc;
|
|||
|
|
|
|||
|
|
namespace BMA.EHR.Report.Service.Controllers
|
|||
|
|
{
|
|||
|
|
[Route("api/[controller]")]
|
|||
|
|
[ApiController]
|
|||
|
|
public class OrganizationReportController : ControllerBase
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
}
|