Beispiel #1
0
 public ProfileController(IPostApplication app)
 {
     _app = app;
 }
Beispiel #2
0
 public PostsController(IPostApplication postApplication)
 {
     _postApplication = postApplication;
 }
 public ProfileController(IPostApplication postApp, IMidiaApplication midiaApp, IWebHostEnvironment hostingEnvironment)
 {
     _postApp            = postApp;
     _midiaApp           = midiaApp;
     _hostingEnvironment = hostingEnvironment;
 }
 public PostController(IPostApplication app)
 {
     _app = app;
 }
 public PostController(IPostApplication app, ILogFacede log)
 {
     this.app = app;
     this.log = log;
 }