DD.WellWorkover.Cloud/AsbCloudApp/Services/IEventService.cs

14 lines
316 B
C#
Raw Normal View History

2022-04-08 13:10:06 +05:00
using AsbCloudApp.Data.SAUB;
2021-04-23 10:21:25 +05:00
using System.Collections.Generic;
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,
CancellationToken token = default);
2021-04-23 10:21:25 +05:00
}
}