public ChatroomController(IUserBusiness userBusiness, IChatroomBusiness chatroomBusiness, IMapper mapper) { this.userBusiness = userBusiness; this.chatroomBusiness = chatroomBusiness; this.mapper = mapper; }
public MessageController(IUserBusiness userBusiness, IMessageBusiness messageBusiness, IChatroomBusiness chatroomBusiness, IMapper mapper) { this.userBusiness = userBusiness; this.messageBusiness = messageBusiness; this.chatroomBusiness = chatroomBusiness; this.mapper = mapper; }