コード例 #1
0
 public HttpResponseMessage DeleteReward(int StoreId, int LoggedInUserId, int reward_id)
 {
     try
     {
         int result = _rewardService.DeleteReward(StoreId, LoggedInUserId, reward_id);
         return(Request.CreateResponse(HttpStatusCode.OK, result));
     }
     catch (Exception)
     {
         throw;
     }
 }