示例#1
0
 public HomeController(SongService songService, OtherService otherService, UserService userService, BrandableStringsManager brandableStringsManager)
 {
     this.songService             = songService;
     this.otherService            = otherService;
     this.userService             = userService;
     this.brandableStringsManager = brandableStringsManager;
 }
示例#2
0
 public ServiceModel(ISessionFactory sessionFactory, IUserPermissionContext permissionContext, IEntryLinkFactory entryLinkFactory, BrandableStringsManager brandableStringsManager)
 {
     this.sessionFactory          = sessionFactory;
     this.permissionContext       = permissionContext;
     this.entryLinkFactory        = entryLinkFactory;
     this.brandableStringsManager = brandableStringsManager;
 }
示例#3
0
 public DiscordWebhookNotifier(
     IOptions <DiscordWebhookSettings> discordWebhookSettings,
     BrandableStringsManager brandableStrings,
     IRepository repository,
     IEntryLinkFactory entryLinkFactory,
     IUserIconFactory userIconFactory)
 {
     _discordWebhookSettings = discordWebhookSettings.Value;
     _brandableStrings       = brandableStrings;
     _repository             = repository;
     _entryLinkFactory       = entryLinkFactory;
     _userIconFactory        = userIconFactory;
 }
示例#4
0
 public HomeController(SongQueries songService, OtherService otherService, BrandableStringsManager brandableStringsManager)
 {
     _songService             = songService;
     _otherService            = otherService;
     _brandableStringsManager = brandableStringsManager;
 }
示例#5
0
 public UserMessageMailer(BrandableStringsManager brandableStringsManager, IOptions <SmtpSettings> smtpSettings)
 {
     _brandableStringsManager = brandableStringsManager;
     _smtpSettings            = smtpSettings.Value;
 }
示例#6
0
 public UserMessageMailer(BrandableStringsManager brandableStringsManager)
 {
     this.brandableStringsManager = brandableStringsManager;
 }
示例#7
0
 public UserService(ISessionFactory sessionFactory, IUserPermissionContext permissionContext, IEntryLinkFactory entryLinkFactory,
                    BrandableStringsManager brandableStringsManager)
     : base(sessionFactory, permissionContext, entryLinkFactory)
 {
     this.brandableStringsManager = brandableStringsManager;
 }
示例#8
0
 public HomeController(OtherService otherService, BrandableStringsManager brandableStringsManager)
 {
     this.otherService            = otherService;
     this.brandableStringsManager = brandableStringsManager;
 }