public static SubscriptionTerm CreateNew(SubscriptionPaymentTypes paymentType, TimePeriod period) { return new SubscriptionTerm(paymentType, period); }
protected SubscriptionTerm(SubscriptionPaymentTypes paymentType, TimePeriod period) { _paymentType = paymentType; _period = period; }