コード例 #1
0
        public void GetUserNotification(int UserId)
        {
            SellffDefaultService objSellffDefaultService = new SellffDefaultService();
            var userData = objSellffDefaultService.HeaderWidgetsCountByUserId(UserId);

            Clients.All.SetUserNotification(userData);
        }
コード例 #2
0
 public IHttpActionResult HeaderWidgetsCountByUserId(int UserId)
 {
     return(ResponseMessage(Request.CreateResponse(HttpStatusCode.OK, objSellffDefaultService.HeaderWidgetsCountByUserId(UserId))));
 }