Beispiel #1
0
        public PeriodProfile(Period period, IBundleProfile bundle)
        {
            InternalPeriod = period;

            InternalEmploy = bundle.BuildEmployProfile(period);
            InternalHealth = bundle.BuildHealthProfile(period);
            InternalSocial = bundle.BuildSocialProfile(period);
            InternalTaxing = bundle.BuildTaxingProfile(period);
            InternalPenzix = bundle.BuildPenzixProfile(period);
        }
        protected void ConfigureProfiles(IEnumerable <VersionPair> versionList, VersionItem defaultProfile)
        {
            Profiles = versionList.ToDictionary(kv => kv.Key, kv => kv.Value);

            DefaultProfile = defaultProfile;
        }
        public BundleVersionCollection()
        {
            this.Profiles = new Dictionary <VersionCode, VersionItem>();

            this.DefaultProfile = new BundleProfileVersion2018();
        }