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

14 lines
311 B
C#
Raw Normal View History

2021-04-23 10:21:25 +05:00
using AsbCloudApp.Data;
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
}
}