21 lines
468 B
C#
21 lines
468 B
C#
using BMA.EHR.Domain.Common;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BMA.EHR.API.Command
|
|
{
|
|
[Route("api/test")]
|
|
[ApiController]
|
|
public class TestController : BaseController
|
|
{
|
|
[HttpGet]
|
|
public ActionResult<ResponseObject> Get()
|
|
{
|
|
return Success("Test", new { data = "11111" });
|
|
}
|
|
}
|
|
}
|