18 lines
371 B
C#
18 lines
371 B
C#
|
using IDIS;
|
||
|
using Microsoft.AspNetCore.Mvc;
|
||
|
using Newtonsoft.Json;
|
||
|
|
||
|
namespace IDIS_Server_SIM.Extensions;
|
||
|
|
||
|
public static class IDISExtensions
|
||
|
{
|
||
|
public static IActionResult ToActionResult(this IDIS_Response response)
|
||
|
{
|
||
|
return new ContentResult()
|
||
|
{
|
||
|
Content = JsonConvert.SerializeObject(response),
|
||
|
ContentType = "application/json",
|
||
|
StatusCode = 200
|
||
|
};
|
||
|
}
|
||
|
}
|