DD.WellWorkover.Cloud/AsbCloudApp/Services/IWitsRepository.cs
2022-04-01 17:55:44 +05:00

11 lines
270 B
C#

using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
namespace AsbCloudApp.Services
{
public interface IWitsRepository
{
Task SaveDataAsync<TDto>(string uid, IEnumerable<TDto> dtos, CancellationToken token);
}
}