예제 #1
0
        public void GetUserReviewRatings(int userId)
        {
            ProfileInfoService objProfileInfoService = new ProfileInfoService();
            var userData = objProfileInfoService.GetCurrentUserRatingById(userId);

            Clients.All.SetUserReviewRatings(userData);
        }
예제 #2
0
 public IHttpActionResult GetCurrentUserRatingById(int Infoval)
 {
     return(ResponseMessage(Request.CreateResponse(HttpStatusCode.OK, objProfileInfoService.GetCurrentUserRatingById(Infoval))));
 }