/// <summary>
        /// Create new instance 
        /// </summary>
        public RenewalPeriodProvider(ApiProductsProvider apiProductsProvider)
        {
            if (apiProductsProvider == null)
            {
                throw new ArgumentNullException("apiProductsProvider");
            }

            this.apiProductsProvider = apiProductsProvider;
        }