identificationOfCultivatedL.../OpenAuth.Mvc/Controllers/BaseController.cs

33 lines
874 B
C#
Raw Normal View History

2026-02-04 10:30:49 +08:00
// ***********************************************************************
// Assembly : OpenAuth.Mvc
// Author : yubaolee
// Created : 07-11-2016
//
// Last Modified By : yubaolee
// Last Modified On : 07-19-2016
// Contact : www.cnblogs.com/yubaolee
// File: BaseController.cs
// ***********************************************************************
using Infrastructure;
using Microsoft.AspNetCore.Mvc;
using OpenAuth.App.Interface;
namespace OpenAuth.Mvc.Controllers
{
/// <summary>
/// 基础控制器
/// <para>李玉宝新增于2016-07-19 11:12:09</para>
/// </summary>
public class BaseController : Controller
{
protected Response Result = new Response();
protected IAuth _authUtil;
public BaseController(IAuth authUtil)
{
_authUtil = authUtil;
}
}
}