示例#1
0
 public EditorController(ICustomerBlogFactory customerBlogFactory, IBlogService blogService, INewsCounterService newsCounterService, UserManager <ApplicationUser> userManager, ICustomerService customerService)
 {
     _customerBlogFactory = customerBlogFactory;
     _blogService         = blogService;
     _newsCounterService  = newsCounterService;
     _userManager         = userManager;
     _customerService     = customerService;
 }
示例#2
0
 public BlogTagsViewComponent(BlogSettings blogSettings, IBlogModelFactory blogModelFactory, ICustomerBlogFactory customerBlogFactory)
 {
     this._blogSettings   = blogSettings;
     _customerBlogFactory = customerBlogFactory;
 }
示例#3
0
 public BlogMonthsViewComponent(BlogSettings blogSettings, ICustomerBlogFactory customerBlogFactory)
 {
     this._blogSettings   = blogSettings;
     _customerBlogFactory = customerBlogFactory;
 }
示例#4
0
 public HomePageEditorViewComponent(IPictureService pictureService, ICustomerBlogFactory customerBlogFactory)
 {
     this._pictureService = pictureService;
     _customerBlogFactory = customerBlogFactory;
 }