// delete the record identified by the specified ID
 public bool Delete(int ID)
 {
     Fpp.Data.Organisation org = new Fpp.Data.Organisation(ModuleSettings);
     return org.Delete(ID);
 }