using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Mvc.Rendering; namespace Infrastructure.Extensions { public static class JsonResultExtensions { public static SelectList SelectList(this JsonResult result) { return result.Value as SelectList; } } }