Example #1
0
 public String HardDeleteBoeken(List <int> BoekenToDelete, int vanaf, int desc, int filter)
 {
     if (!User.IsInRole("SuperAdministrator"))
     {
         return("fail");
     }
     foreach (int boek in BoekenToDelete)
     {
         Boek a = bs.GetBoekByIDAdmin(boek);
         if (a == null)
         {
             return("fail");
         }
         bs.DeleteBoek(a);
     }
     return("ok");
 }