public NovelManagerController(IAuth authUtil, IHostingEnvironment hostingEnvironment, NovelManagerApp app, WebsiteApp websiteApp, IHostingEnvironment hostingEnv) : base(authUtil, hostingEnvironment)
 {
     _app        = app;
     _websiteApp = websiteApp;
     _hostingEnv = hostingEnv;
 }
Esempio n. 2
0
 public ChapterManagerController(IAuth authUtil, IHostingEnvironment hostingEnvironment, NovelManagerApp novelManagerApp, ChapterManagerApp app) : base(authUtil, hostingEnvironment)
 {
     _novelManagerApp = novelManagerApp;
     _app             = app;
 }