Calling a function from a C# API controller with Axios – Asp.net
I have function in a C# controller file that makes an API call to fetch some placeholder data that is hard coded locally. [Route("api/ReportingCenter/GetReportList")] [HttpGet] public class ReportController : ApiController { public async Task<IHttpActionResult> GetReportList(CancellationToken cancellationToken) { using (var source…