using AsbCloudApp.Data;
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;

namespace AsbCloudApp.Services
{
    public interface IEventService
    {
        Task UpsertAsync(string uid, IEnumerable<EventDto> dtos,
            CancellationToken token = default);
    }
}