using Infrastructure.Data; using Infrastructure.Web.Mvc.Test; using Microsoft.AspNetCore.Mvc; namespace Infrastructure.Web.Mvc { [ApiExplorerSettings(IgnoreApi = false)] public class TestController : CrudController { public TestController(IRepository repo) : base(repo) { } } }