Exemplo n.º 1
0
 public CreateTopicCommandHandler(IForumDatastore forums, ITopicDatastore topics, ITaskDatastore taskDatastore, IPrincipal principal) : base(taskDatastore)
 {
     this.forums    = forums;
     this.topics    = topics;
     this.principal = principal;
 }
 public DeleteCategoryCommandHandler(ICategoryDatastore categories, IForumDatastore forums, ITaskDatastore taskDatastore) : base(taskDatastore)
 {
     this.categories = categories;
     this.forums     = forums;
 }
Exemplo n.º 3
0
 public MoveForumCommandHandler(IForumDatastore forums, ITaskDatastore taskDatastore) : base(taskDatastore)
 {
     this.forums = forums;
 }
Exemplo n.º 4
0
 public CreateForumCommandHandler(ICategoryDatastore categories, IForumDatastore datastore, ITaskDatastore taskDatastore) : base(taskDatastore)
 {
     this.categories = categories;
     this.forums     = datastore;
 }
Exemplo n.º 5
0
 public MoveTopicCommandHandler(IForumDatastore forums, ITopicDatastore topics, ICommandDispatcher commandDispatcher, ITaskDatastore taskDatastore) : base(taskDatastore)
 {
     this.topics            = topics;
     this.forums            = forums;
     this.commandDispatcher = commandDispatcher;
 }
Exemplo n.º 6
0
 public ReadBreadcrumbForForumQueryHandler(ICategoryDatastore categoryDatastore, IForumDatastore forumDatastore)
 {
     this.categoryDatastore = categoryDatastore;
     this.forumDatastore    = forumDatastore;
 }