// delete the record identified by the specified ID
        public static void Delete(int UserID, int AltHandlerID)
        {
            String moduleSettings = ModuleConfig.GetSettings();
            Fpp.Data.AltHandler ah = new Fpp.Data.AltHandler(moduleSettings);

            ah.Delete(UserID, AltHandlerID);
        }
 public AltHandler(DataRow row)
     : base()
 {
     _altHandler = new Fpp.Data.AltHandler(ModuleSettings);
     LoadFromRow(row);
 }
 public AltHandler(int AltHandlerID)
     : base()
 {
     _altHandler = new Fpp.Data.AltHandler(ModuleSettings);
 }