DD.WellWorkover.Cloud/AsbCloudApp/Services/IEventService.cs
Фролов 30a59d0809 cleanup
2021-09-10 11:28:57 +05:00

14 lines
311 B
C#

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);
}
}