Biz.Services.LevelContentResourceService.LevelContentResourceService C# (CSharp) Method

LevelContentResourceService() public method

public LevelContentResourceService ( IDownloadService downloadService, int levelId, IConstants constants ) : System
downloadService IDownloadService
levelId int
constants IConstants
return System
        public LevelContentResourceService(IDownloadService downloadService, int levelId, IConstants constants)
        {
            this.downloadService = downloadService;

            this.ModuleId = levelId;

            // Get all course content.
            this.fullContentLink = new Uri(constants.ServicePrefix + string.Format(levelLink, this.ModuleId, constants.CultureCode, constants.SiteVersion, constants.PartnerCode));

            // Download activity content.
            this.Content = downloadService.DownloadFromPath(this.fullContentLink);
        }
LevelContentResourceService