// *********************************************************************** // 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 { /// /// 基础控制器 /// 李玉宝新增于2016-07-19 11:12:09 /// public class BaseController : Controller { protected Response Result = new Response(); protected IAuth _authUtil; public BaseController(IAuth authUtil) { _authUtil = authUtil; } } }