public async Task <bool> ActivateMemebership()
        {
            var methodName = MethodBase.GetCurrentMethod().Name;

            _logger?.LogInformation(string.Format("Business Logic Call Starts", methodName, DateTime.UtcNow.ToString()) + "\n");
            var result = DataRepository.ActivateMemebership();

            _logger?.LogInformation(string.Format("Business Logic Call Ends", methodName, DateTime.Now.ToString()) + "\n");
            return(result);
        }