public bool UpdateCustomerPassword(int?customerID, string oldPassword, string newPassword)
        {
            var result = false;

            try
            {
                result = (1 == CustomerAccessor.UpdateCustomerPasswordHash(customerID, oldPassword, newPassword));
            }
            catch (Exception ex)
            {
                throw new Exception("Something went wrong. Password not updated." + ex.Message + ex.StackTrace);
            }
            return(result);
        }