public BaseResponse <GetScoreChangeHistoryResult> GetScoreChangeHistory(GetScoreChangeHistoryParameter parameter)
 {
     if (Validate(parameter))
     {
         return(scoreManager.GetScoreChangeHistory(parameter));
     }
     else
     {
         BaseResponse <GetScoreChangeHistoryResult> response = new BaseResponse <GetScoreChangeHistoryResult>();
         response.IsSuccessful = false;
         response.Reason       = "JWT_ERR";
         return(response);
     }
 }