public InvoerItemPostResult ConvertToResult(string html)
        {
            var result = new InvoerItemPostResult();

            if (html.Contains("De invoer is toegevoegd aan de lijst."))
            {
                result.AddingWorked = true;
            }
            return(result);
        }
 public bool Execute()
 {
     try
     {
         Result = new InvoerItemScrapePost(Parameters).Execute();
         return(true);
     }
     catch (Exception e)
     {
         return(false);
     }
 }