Exemplo n.º 1
0
 public HttpResponseMessage AddNotification(NotificationModel obj)
 {
     using (NotificationTier mt = new NotificationTier())
     {
         try
         {
             return this.Request.CreateResponse(HttpStatusCode.OK, mt.AddNotification(obj));
         }
         catch (Exception ex)
         {
             return this.Request.CreateResponse(HttpStatusCode.BadRequest, ex.Message);
         }
     }
 }