DD.WellWorkover.Cloud/AsbCloudApp/Services/IEventService.cs
2021-04-23 10:21:25 +05:00

11 lines
205 B
C#

using AsbCloudApp.Data;
using System.Collections.Generic;
namespace AsbCloudApp.Services
{
public interface IEventService
{
void Upsert(string uid, IEnumerable<EventDto> dtos);
}
}