public static int ToevoegenGehuurdGereedschap(a_GehuurdGereedschap gehuurdgereedschap)
 {
     try
     {
         using (MyFarmEntities entities = new MyFarmEntities())
         {
             entities.a_GehuurdGereedschap.Add(gehuurdgereedschap); //meervoud gaat niet
             return(entities.SaveChanges());
         }
     }
     catch (Exception ex)
     {
         FileOperations.FoutLoggen(ex);
         return(0);
     }
 }
 public static int VerwijderGehuurdGereedschapHuurlijst(a_GehuurdGereedschap gehuurdgereedschap)
 {
     try
     {
         using (MyFarmEntities entities = new MyFarmEntities())
         {
             entities.Entry(gehuurdgereedschap).State = EntityState.Deleted;
             return(entities.SaveChanges());
         }
     }
     catch (Exception ex)
     {
         FileOperations.FoutLoggen(ex);
         return(0);
     }
 }