2022-04-08 13:10:06 +05:00
|
|
|
|
using AsbCloudApp.Data.SAUB;
|
2021-04-23 10:21:25 +05:00
|
|
|
|
using System.Collections.Generic;
|
2021-08-11 16:54:42 +05:00
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.Threading.Tasks;
|
2021-04-23 10:21:25 +05:00
|
|
|
|
|
|
|
|
|
namespace AsbCloudApp.Services
|
|
|
|
|
{
|
|
|
|
|
public interface IEventService
|
|
|
|
|
{
|
2021-09-10 11:28:57 +05:00
|
|
|
|
Task UpsertAsync(string uid, IEnumerable<EventDto> dtos,
|
2021-08-11 16:54:42 +05:00
|
|
|
|
CancellationToken token = default);
|
2021-04-23 10:21:25 +05:00
|
|
|
|
}
|
|
|
|
|
}
|