public HomeController(IWPBService wpbService)
 {
     _wpbService = wpbService;
 }
 public UserController(IWPBService wpbService, SiteConfig siteSettings)
 {
     _wpbService   = wpbService;
     _siteSettings = siteSettings;
 }
示例#3
0
 public InstafavsController(IWPBService wpbService, SiteConfig siteSettings)
 {
     _wpbService   = wpbService;
     _siteSettings = siteSettings;
 }
示例#4
0
 public AccountController(IWPBService wpbService, IConfiguration config)
 {
     _wpbService = wpbService;
     _config     = config;
 }
示例#5
0
 public TokenController(IConfiguration config, IWPBService wpbService, SiteConfig siteSettings)
 {
     _config       = config;
     _wpbService   = wpbService;
     _siteSettings = siteSettings;
 }