Beispiel #1
0
 public CommentController(
     ICommentDataService commentDataService,
     ICommentActionService commentActionService,
     ILoggerFactory loggerFactory,
     IBus bus
     )
 {
     _commentDataService   = commentDataService;
     _commentActionService = commentActionService;
     _logger = loggerFactory.CreateLogger <GroupController>();
     _bus    = bus;
 }
 public BaseController(ICommentActionService _comment)
 {
     this.CommentService = _comment;
 }
 public CommentController(ICommentActionService Comment)
     : base(Comment)
 {
 }