コード例 #1
0
 public SuccessStoryController(CoreSettings coreSettings, IPermissionService permissionService, ISuccessStoryService successStoryService, IUserService userService, ISlugService slugService, IMediaService mediaService, IWebHelper webHelper)
 {
     _coreSettings = coreSettings;
     _mediaService = mediaService;
     _permissionService = permissionService;
     _successStoryService = successStoryService;
     _slugService = slugService;
     _userService = userService;
     _webHelper = webHelper;
 }
コード例 #2
0
 public HomeController(ICategoryService categoryService, ILocationService locationService, IProjectService projectService, SiteSettings siteSettings, ISuccessStoryService successStoryService, ITweetService tweetService, IWebHelper webHelper)
 {
     _categoryService = categoryService;
     _locationService = locationService;
     _projectService = projectService;
     _siteSettings = siteSettings;
     _successStoryService = successStoryService;
     _tweetService = tweetService;
     _webHelper = webHelper;
 }
コード例 #3
0
 public SuccessStoryController(SiteSettings siteSettings, ISuccessStoryService successStoryService)
 {
     _siteSettings = siteSettings;
     _successStoryService = successStoryService;
 }
コード例 #4
0
 public SubmitStoryController(ISuccessStoryService successStoryService, Services.Interfaces.INotificationService notificationService)
 {
     _successStoryService = successStoryService;
     _notificationService = notificationService;
 }