Exemple #1
0
 public CommentController(ICommentService commentService, IBanReasonService banReasonService, ICategoryService categoryService)
     : base(categoryService)
 {
     this.commentService   = commentService;
     this.banReasonService = banReasonService;
 }
 public BanReasonController(IBanReasonService service, ICategoryService categoryService)
     : base(categoryService)
 {
     this.service = service;
 }