/// <summary>
        /// SCORM Engine Service constructor that takes a single configuration parameter
        /// </summary>
        /// <param name="config">The Configuration object to be used to configure the Scorm Engine Service client</param>
        public ScormEngineService(Configuration config)
        {
            System.Net.ServicePointManager.Expect100Continue = false;

            configuration = config;
            courseService = new CourseService(configuration, this);
            dispatchService = new DispatchService(configuration, this);
            registrationService = new RegistrationService(configuration, this);
            invitationService = new InvitationService(configuration, this);
            lrsAccountService = new LrsAccountService(configuration, this);
            uploadService = new UploadService(configuration, this);
            ftpService = new FtpService(configuration, this);
            exportService = new ExportService(configuration, this);
            reportingService = new ReportingService(configuration, this);
            debugService = new DebugService(configuration, this);
        }
Exemple #2
0
        /// <summary>
        /// SCORM Engine Service constructor that takes a single configuration parameter
        /// </summary>
        /// <param name="config">The Configuration object to be used to configure the Scorm Engine Service client</param>
        public ScormEngineService(Configuration config)
        {
            System.Net.ServicePointManager.Expect100Continue = false;

            configuration       = config;
            courseService       = new CourseService(configuration, this);
            dispatchService     = new DispatchService(configuration, this);
            registrationService = new RegistrationService(configuration, this);
            taggingService      = new TaggingService(configuration, this);
            invitationService   = new InvitationService(configuration, this);
            lrsAccountService   = new LrsAccountService(configuration, this);
            uploadService       = new UploadService(configuration, this);
            ftpService          = new FtpService(configuration, this);
            exportService       = new ExportService(configuration, this);
            reportingService    = new ReportingService(configuration, this);
            debugService        = new DebugService(configuration, this);
        }