コード例 #1
0
 public DeleteCategoryCommandHandler(ICategoryDatastore categories, IForumDatastore forums, ITaskDatastore taskDatastore) : base(taskDatastore)
 {
     this.categories = categories;
     this.forums     = forums;
 }
コード例 #2
0
 public UpdateCategoryCommandHandler(ICategoryDatastore categories, ITaskDatastore taskDatastore) : base(taskDatastore)
 {
     this.categories = categories;
 }
コード例 #3
0
 public CreateCategoryCommandHandler(ICategoryDatastore datastore, ITaskDatastore taskDatastore) : base(taskDatastore)
 {
     this.datastore = datastore;
 }
コード例 #4
0
 public CreateForumCommandHandler(ICategoryDatastore categories, IForumDatastore datastore, ITaskDatastore taskDatastore) : base(taskDatastore)
 {
     this.categories = categories;
     this.forums     = datastore;
 }
コード例 #5
0
 public ReadCategoriesWithForumsQueryHandler(ICategoryDatastore datastore)
 {
     this.datastore = datastore;
 }
コード例 #6
0
 public ReadBreadcrumbForForumQueryHandler(ICategoryDatastore categoryDatastore, IForumDatastore forumDatastore)
 {
     this.categoryDatastore = categoryDatastore;
     this.forumDatastore    = forumDatastore;
 }
コード例 #7
0
 public ReadCategoryQueryHandler(ICategoryDatastore categoryDatastore)
 {
     this.categoryDatastore = categoryDatastore;
 }