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 Get() { return Success("Test", new { data = "11111" }); } } }