Ejemplo n.º 1
0
 public static void Delete(string title)
 {
     ActionReportAccess.Delete(title);
 }
Ejemplo n.º 2
0
 public static void Delete(string zoneId, string title)
 {
     ActionReportAccess.Delete(zoneId, title);
 }
Ejemplo n.º 3
0
 public static void Add(ActionReport item)
 {
     ActionReportAccess.Add(item);
 }
Ejemplo n.º 4
0
 public static void Edit(ActionReport item)
 {
     ActionReportAccess.Edit(item);
 }
Ejemplo n.º 5
0
 public static int GetWhiteCountListByIp(DateTime startTime, DateTime endTime, string ip)
 {
     return(ActionReportAccess.GetWhiteCountListByIp(startTime, endTime, ip));
 }
Ejemplo 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));
 }
Ejemplo n.º 7
0
 public static List <ActionReport> GetListByIp(string ip)
 {
     return(ActionReportAccess.GetListByIp(ip));
 }
Ejemplo n.º 8
0
 public static List <ActionReport> GetListByZoneID(string zoneId)
 {
     return(ActionReportAccess.GetListByZoneID(zoneId));
 }
Ejemplo n.º 9
0
 public static List <ActionReport> GetListByTitle(string title)
 {
     return(ActionReportAccess.GetListByTitle(title));
 }