1
0
This repository has been archived on 2026-04-22. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
my-old-website/MyWebsite/MyWebsite/Helpers/ExtendedController.cs
T
Michael Gordeev ad8b23f727 Updated project
2020-03-03 16:49:41 +03:00

17 lines
389 B
C#

using Microsoft.AspNetCore.Mvc;
using MyWebsite.ViewModels;
using MyWebsite.Models.Databases;
namespace MyWebsite.Controllers
{
public class ExtendedController : Controller
{
public DatabaseContext Database { get; }
public ExtendedController(DatabaseContext context) =>
Database = context;
new public IActionResult View() =>
base.View(new ViewModelBase(Database));
}
}