public static WebHooksPendingItem GetWebHooksPendingItem(LoginUser loginUser, int id)
        {
            WebHooksPending webHooksPending = new WebHooksPending(loginUser);

            webHooksPending.LoadById(id);
            if (webHooksPending.IsEmpty)
            {
                return(null);
            }
            else
            {
                return(webHooksPending[0]);
            }
        }
 public WebHooksPendingItem(DataRow row, WebHooksPending webHooksPending) : base(row, webHooksPending)
 {
     _webHooksPending = webHooksPending;
 }