public MeetingService(IMeetingQueries meetingQueries, IMeetingCommands meetingCommands, ITreeService treeService, IMapper mapper) { this.MeetingQueries = meetingQueries; this.TreeService = treeService; this.MeetingCommand = meetingCommands; this.Mapper = mapper; }
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; }