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

11 lines
205 B
C#
Raw Normal View History

2021-04-23 10:21:25 +05:00
using AsbCloudApp.Data;
using System.Collections.Generic;
namespace AsbCloudApp.Services
{
public interface IEventService
{
void Upsert(string uid, IEnumerable<EventDto> dtos);
}
}