public IPenzixProfile CreatePeriodProfile(Period period, IPenzixGuides guides)
 {
     return(new PenzixGuidingProfile(period, guides));
 }
示例#2
0
        public PenzixGuidingProfile(Period period, IPenzixGuides guides)
        {
            this.InternalPeriod = period;

            this.InternalGuides = guides;
        }
        public IPenzixProfile BuildPeriodProfile(Period period)
        {
            IPenzixGuides guides = InternalGuides.BuildPeriodGuides(period);

            return(InternalProfile.CreatePeriodProfile(period, guides));
        }