DD.WellWorkover.Cloud/AsbCloudApp/Services/IEventService.cs
2022-04-08 13:10:06 +05:00

14 lines
316 B
C#

using AsbCloudApp.Data.SAUB;
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);
}
}