using System.Collections.Generic; using AsbCloudApp.Data; using AsbCloudApp.Data.WellOperationImport; namespace AsbCloudApp.Services.WellOperationImport; /// /// Импорт ГГД /// public interface IWellOperationImportService { /// /// Загрузить из excel список операций /// /// /// /// /// IEnumerable Import(int idWell, int idUser, int idType, SheetDto sheet); }