Ejemplo n.º 1
0
 public EventsController(IEventTasks eventTasks,
                         ILocationTasks locationTasks,
                         IPersonTasks personTasks,
                         IUserTasks userTasks,
                         ISuggestionTasks suggestionTasks,
                         IAuditTasks auditTasks,
                         ILuceneTasks luceneTasks,
                         ISourceTasks sourceTasks,
                         IEventMatchingTasks eventMatchingTasks)
 {
     this.eventTasks         = eventTasks;
     this.locationTasks      = locationTasks;
     this.personTasks        = personTasks;
     this.userTasks          = userTasks;
     this.suggestionTasks    = suggestionTasks;
     this.auditTasks         = auditTasks;
     this.luceneTasks        = luceneTasks;
     this.sourceTasks        = sourceTasks;
     this.eventMatchingTasks = eventMatchingTasks;
 }
Ejemplo n.º 2
0
 public CasesController(ISourceTasks sourceTasks, IEventTasks eventTasks, IEventMatchingTasks eventMatchingTasks)
 {
     this.sourceTasks        = sourceTasks;
     this.eventTasks         = eventTasks;
     this.eventMatchingTasks = eventMatchingTasks;
 }