예제 #1
0
 public HttpResponseMessage GetAllRunningRewards(int StoreId, int LoggedInUserId)
 {
     try
     {
         var allrunningRewards = _rewardService.GetAllRunningRewards(StoreId, LoggedInUserId);
         return(Request.CreateResponse(HttpStatusCode.OK, allrunningRewards));
     }
     catch (Exception)
     {
         throw;
     }
 }