using System.Collections.Generic;
using AsbCloudApp.Data;
using AsbCloudApp.Data.WellOperationImport;

namespace AsbCloudApp.Services.WellOperationImport;

/// <summary>
/// Импорт ГГД
/// </summary>
public interface IWellOperationImportService
{
    /// <summary>
    /// Загрузить из excel список операций
    /// </summary>
    /// <param name="idWell"></param>
    /// <param name="idUser"></param>
    /// <param name="idType"></param>
    /// <param name="sheet"></param>
    IEnumerable<WellOperationDto> Import(int idWell, int idUser, int idType, SheetDto sheet);
}