コード例 #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
ファイル: BlogTags.cs プロジェクト: agsyazilim/Ags
 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;
 }