Exemplo n.º 1
0
 public HomeController(IWPBService wpbService)
 {
     _wpbService = wpbService;
 }
Exemplo n.º 2
0
 public UserController(IWPBService wpbService, SiteConfig siteSettings)
 {
     _wpbService   = wpbService;
     _siteSettings = siteSettings;
 }
Exemplo n.º 3
0
 public InstafavsController(IWPBService wpbService, SiteConfig siteSettings)
 {
     _wpbService   = wpbService;
     _siteSettings = siteSettings;
 }
Exemplo n.º 4
0
 public AccountController(IWPBService wpbService, IConfiguration config)
 {
     _wpbService = wpbService;
     _config     = config;
 }
Exemplo n.º 5
0
 public TokenController(IConfiguration config, IWPBService wpbService, SiteConfig siteSettings)
 {
     _config       = config;
     _wpbService   = wpbService;
     _siteSettings = siteSettings;
 }