Inheritance: ServiceBase
Exemplo n.º 1
0
 public TopicController(CategoryService categoryService, TopicService topicService, CommentService commentService, TopicCollectService topicCollectService)
 {
     this.CategoryService = categoryService;
     this.TopicService = topicService;
     this.CommentService = commentService;
     this.TopicCollectService = topicCollectService;
 }
Exemplo n.º 2
0
 public HomeController(CategoryService categoryService, TopicService topicService, ILogger<HomeController> logger)
 {
     this.CategoryService = categoryService;
     this.TopicService = topicService;
     Logger = logger;
 }
Exemplo n.º 3
0
 public TopicService(Data.ClubContext dbContext, CategoryService categoryService, ClientManager clientManager)
 {
     this.DbContext       = dbContext;
     this.CategoryService = categoryService;
     this.ClientManager   = clientManager;
 }
Exemplo n.º 4
0
 public HomeController(CategoryService categoryService, TopicService topicService)
 {
     this.CategoryService = categoryService;
     this.TopicService = topicService;
 }
Exemplo n.º 5
0
 public TopicService(IServiceProvider serviceProvider, CategoryService categoryService)
     : base(serviceProvider)
 {
     this.CategoryService = categoryService;
 }