/ThinkEmailFomatter/Controllers/BaseController.cs
https://bitbucket.org/nicdao/frg-think-emailformatter · C# · 29 lines · 23 code · 6 blank · 0 comment · 0 complexity · edd62f5f01e8f6e567f1515f666bea38 MD5 · raw file
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- using System.Web.Mvc;
- using ThinkEmailFormatter.Models;
- using ThinkEmailFormatter.Utilities;
- using Microsoft.Practices.EnterpriseLibrary.Logging;
- namespace ThinkEmailFormatter.Controllers
- {
- public class BaseController : Controller
- {
- #region[ MEMBERS ]
- public readonly IControllerAggregateService _aggSvc;
- #endregion
- #region [ CONSTRUCTOR ]
- public BaseController(IControllerAggregateService controllerAggregateService)
- {
- _aggSvc = controllerAggregateService;
- }
- #endregion
- }
- }