Biz.Managers.ContentMapfileManager.ContentMapfileManager C# (CSharp) Method

ContentMapfileManager() public method

public ContentMapfileManager ( IBaseModule baseModule, IConstants constants ) : System
baseModule IBaseModule
constants IConstants
return System
        public ContentMapfileManager(IBaseModule baseModule, IConstants constants)
        {
            this.baseModule = baseModule;
            this.constants = constants;

            this.Mapfile = new Mapfile();

            this.filePath = this.constants.LocalContentPath + string.Format(@"level_{0}_{1}.json", this.baseModule.Id, this.constants.CultureCode);
        }