Esempio n. 1
0
 public BlogArticleController(IOptionsSnapshot <CustomConfiguration> optionsSnapshot,
                              IBlogLableBLL blogLableBLL,
                              IBlogArticleBLL blogArticleBLL,
                              UserAccount userAccount,
                              IBlogRelatedBLL blogRelatedBLL)
 {
     _optionsSnapshot = optionsSnapshot;
     _blogLableBLL    = blogLableBLL;
     _blogArticleBLL  = blogArticleBLL;
     _userAccount     = userAccount;
     _blogRelatedBLL  = blogRelatedBLL;
 }
Esempio n. 2
0
 public TagsController(IBlogLableBLL blogLableBLL)
 {
     _blogLableBLL = blogLableBLL;
 }
Esempio n. 3
0
 public BlogLableController(IBlogLableBLL blogLableBLL, UserAccount userAccount)
 {
     _blogLableBLL = blogLableBLL;
     _userAccount  = userAccount;
 }