Files
mixtape/zero.Web/Controllers/BackofficeController.cs
T
2020-04-03 18:03:36 +02:00

20 lines
377 B
C#

using Microsoft.AspNetCore.Mvc;
using System;
using System.Linq;
using zero.Core;
using zero.Core.Entities;
namespace zero.Web.Controllers
{
public abstract class BackofficeController : Controller
{
protected IZeroConfiguration Configuration { get; set; }
public BackofficeController(IZeroConfiguration config)
{
Configuration = config;
}
}
}