public HttpResponseMessage SetPrize([FromBody] CC_Prize Prize) { try { var db = new RedisOperation(_RedisDB); var key = RedisKeys.CCPrizeKey(Prize.CustomerId, Prize.EventId); db.InsertString(key, Prize); return(Request.CreateResponse(HttpStatusCode.OK, new ResponseModel { Code = ResponseCode.Success, Message = "success" })); } catch (Exception ex) { return(Request.CreateResponse(HttpStatusCode.OK, new ResponseModel { Code = ResponseCode.Fail, Message = "fail:" + ex.Message })); } }