PageRenderTime 39ms CodeModel.GetById 15ms RepoModel.GetById 1ms app.codeStats 0ms

/ThinkEmailFomatter/Models/Interfaces/IControllerAggregateService.cs

https://bitbucket.org/nicdao/frg-think-emailformatter
C# | 22 lines | 17 code | 5 blank | 0 comment | 0 complexity | b0a077a6ace8213d01fab72409ef6fc1 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 ThinkEmailFormatter.Utilities;
  6. using Microsoft.Practices.EnterpriseLibrary.Logging;
  7. namespace ThinkEmailFormatter.Models
  8. {
  9. public interface IControllerAggregateService
  10. {
  11. HttpContextBase HttpContext { get; set; }
  12. IThinkHelper ThinkHelper { get; set; }
  13. ViewHelper ViewHelper { get; set; }
  14. EmailContext EmailContext { get; set; }
  15. LogWriter Log { get; set; }
  16. }
  17. }