public class ProductController : Controller | |
{ | |
public IActionResult Index() | |
{ | |
var applicationDbContext = new ApplicationDbContext(null); | |
var repository = new ProductRepository(applicationDbContext); | |
return View(repository.GetAll()); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment