2023-11-17 11:19:04 +05:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using AsbCloudApp.Data;
|
2023-09-04 14:11:25 +05:00
|
|
|
using AsbCloudApp.Data.WellOperationImport;
|
|
|
|
|
|
|
|
namespace AsbCloudApp.Services.WellOperationImport;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Импорт ГГД
|
|
|
|
/// </summary>
|
|
|
|
public interface IWellOperationImportService
|
|
|
|
{
|
2023-10-04 15:36:00 +05:00
|
|
|
/// <summary>
|
|
|
|
/// Загрузить из excel список операций
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="idWell"></param>
|
|
|
|
/// <param name="idUser"></param>
|
|
|
|
/// <param name="idType"></param>
|
|
|
|
/// <param name="sheet"></param>
|
2023-11-17 11:19:04 +05:00
|
|
|
IEnumerable<WellOperationDto> Import(int idWell, int idUser, int idType, SheetDto sheet);
|
2023-09-04 14:11:25 +05:00
|
|
|
}
|