mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-04-05 17:38:01 +08:00
33 lines
906 B
C#
33 lines
906 B
C#
// ***********************************************************************
|
|
// 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;
|
|
}
|
|
|
|
}
|
|
} |