using AsbCloudApp.Data; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading; using System.Threading.Tasks; namespace AsbCloudApp.Services { public interface IWellCompositeService { Task> GetAsync(int idWell, CancellationToken cancellationToken); Task SaveAsync(int idWell, IEnumerable wellComposites, CancellationToken token); } }