예제 #1
0
 public static Boolean isJudgeAtShow(int UserID, int ShowID)
 {
     String moduleSettings = ModuleConfig.GetSettings();
     Data.Judge j = new Data.Judge(moduleSettings);
     DataSet ds = j.SearchFor(UserID, ShowID);
     return (ds.Tables.Count > 0 && ds.Tables[0].Rows.Count > 0);
 }