PageRenderTime 63ms CodeModel.GetById 38ms RepoModel.GetById 1ms app.codeStats 0ms

/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
Possible License(s): BSD-3-Clause
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. using System.Web.Mvc;
  6. using ThinkEmailFormatter.Models;
  7. using ThinkEmailFormatter.Utilities;
  8. using Microsoft.Practices.EnterpriseLibrary.Logging;
  9. namespace ThinkEmailFormatter.Controllers
  10. {
  11. public class BaseController : Controller
  12. {
  13. #region[ MEMBERS ]
  14. public readonly IControllerAggregateService _aggSvc;
  15. #endregion
  16. #region [ CONSTRUCTOR ]
  17. public BaseController(IControllerAggregateService controllerAggregateService)
  18. {
  19. _aggSvc = controllerAggregateService;
  20. }
  21. #endregion
  22. }
  23. }