public DeleteCategoryCommandHandler(ICategoryDatastore categories, IForumDatastore forums, ITaskDatastore taskDatastore) : base(taskDatastore)
 {
     this.categories = categories;
     this.forums     = forums;
 }
 public UpdateCategoryCommandHandler(ICategoryDatastore categories, ITaskDatastore taskDatastore) : base(taskDatastore)
 {
     this.categories = categories;
 }
 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;
 }