Esempio n. 1
0
 public static void Delete(string title)
 {
     ActionReportAccess.Delete(title);
 }
Esempio n. 2
0
 public static void Delete(string zoneId, string title)
 {
     ActionReportAccess.Delete(zoneId, title);
 }
Esempio n. 3
0
 public static void Add(ActionReport item)
 {
     ActionReportAccess.Add(item);
 }
Esempio n. 4
0
 public static void Edit(ActionReport item)
 {
     ActionReportAccess.Edit(item);
 }
Esempio n. 5
0
 public static int GetWhiteCountListByIp(DateTime startTime, DateTime endTime, string ip)
 {
     return(ActionReportAccess.GetWhiteCountListByIp(startTime, endTime, ip));
 }
Esempio n. 6
0
 public static List <ActionReport> GetWhiteListByIp(int limit, int offset, DateTime startTime, DateTime endTime, string ip)
 {
     return(ActionReportAccess.GetWhiteListByIp(limit, offset, startTime, endTime, ip));
 }
Esempio n. 7
0
 public static List <ActionReport> GetListByIp(string ip)
 {
     return(ActionReportAccess.GetListByIp(ip));
 }
Esempio n. 8
0
 public static List <ActionReport> GetListByZoneID(string zoneId)
 {
     return(ActionReportAccess.GetListByZoneID(zoneId));
 }
Esempio n. 9
0
 public static List <ActionReport> GetListByTitle(string title)
 {
     return(ActionReportAccess.GetListByTitle(title));
 }