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

LevelStructureContentResourceService() public method

public LevelStructureContentResourceService ( IDownloadService downloadService, int levelId, IConstants constants ) : System
downloadService IDownloadService
levelId int
constants IConstants
return System
        public LevelStructureContentResourceService(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.SiteVersion, constants.CultureCode, constants.PartnerCode));

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

            // Covert to JSON
        }
LevelStructureContentResourceService