using Oqtane.Models;
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace Oqtane.Services
{
///
/// Service to manage s on a
///
public interface IVisitorService
{
///
/// Get all s of this .
///
///
/// ID-reference of a
///
Task> GetVisitorsAsync(int siteId, DateTime fromDate);
///
/// Get a specific of this .
///
///
/// ID-reference of a
///
Task GetVisitorAsync(int visitorId);
}
}