Example #1
0
 public MeetingService(IMeetingQueries meetingQueries, IMeetingCommands meetingCommands, ITreeService treeService, IMapper mapper)
 {
     this.MeetingQueries = meetingQueries;
     this.TreeService    = treeService;
     this.MeetingCommand = meetingCommands;
     this.Mapper         = mapper;
 }
Example #2
0
 public MeetingsController(IMeetingQueries meetingQueries, IMeetingCommands meetingCommands, IMeetingService meetingService, IMapper mapper, IConfiguration configuration, IHttpContextAccessor httpContextAccessor)
 {
     this.MeetingQueries  = meetingQueries;
     this.mapper          = mapper;
     this.MeetingService  = meetingService;
     this.MeetingCommands = meetingCommands;
     this.configuration   = configuration;
     _httpContextAccessor = httpContextAccessor;
 }