Exemplo n.º 1
0
        public void CreateNewProductLicense(string ProductName, int NumberOfLicenses, int InactiveTimeOut)
        {
            /// This is to insure that no company would just higher a programmer to increase the available number of licenses
            /// For Carver Lab Use Only... to retrieve this key see the const string csInternalKey which is declared globally
            if(CompanyKey != m_InternalAuthorizationKey)
            {
                return;
            }

            Functions F = new Functions();
            F.CreateProductLicense(ProductName, NumberOfLicenses,InactiveTimeOut);
        }