//sumbit subscription details to the database company wise ->limited to 5 users per company
        public string jsonAddSubscriptions(string pstrSubscriptionName, string pstrSubscriptionEmail, string pstrCompanyId)
        {
            PerformSubscription PerformAddSubscriptionObj = new PerformSubscription();
            string returnMessage = PerformAddSubscriptionObj.mAddSubscription(pstrSubscriptionName, pstrSubscriptionEmail, Int32.Parse(pstrCompanyId));

            return(returnMessage);
        }
        //to count no. of subscriptions
        public string jsonSubscriptionCount()
        {
            PerformSubscription countSubscriptionObj = new PerformSubscription();
            string resultCount = countSubscriptionObj.getSubscriptionCount();

            return(resultCount);
        }