/// <summary> /// Constructor which creates the json configuration for the import and also a request service for the grabing the remote html /// </summary> /// <param name="options"></param> /// <param name="helper"></param> /// <param name="content"></param> /// <param name="request"></param> public ImporterService(MigrationOptions options, IMigrationHelper helper, IMigrationContentService content, IRequestService request) { Options = options.NotNull(); _helper = helper.NotNull(); _content = content.NotNull(); _request = request.NotNull(); }