public static void DeleteEntry(int UserID, int ShowID)
 {
     String moduleSettings = ModuleConfig.GetSettings();
     Data.UserShows us = new Data.UserShows(moduleSettings);
     us.Delete(UserID, ShowID);
 }
 public void Delete()
 {
     _userShows = new Data.UserShows(ModuleSettings);
     _userShows.Delete(_userid, ShowID);
 }
 public void Delete()
 {
     _userShows = new Fpp.WebModules.Data.UserShows(_moduleSettings);
     _userShows.Delete(_userid, ShowID);
 }