2023-09-04 14:11:25 +05:00
|
|
|
using System.IO;
|
|
|
|
using AsbCloudApp.Data.WellOperationImport;
|
2023-10-04 15:36:00 +05:00
|
|
|
using AsbCloudApp.Data.WellOperationImport.Options;
|
2023-09-04 14:11:25 +05:00
|
|
|
|
|
|
|
namespace AsbCloudApp.Services.WellOperationImport;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Парсинг операций из excel файла
|
|
|
|
/// </summary>
|
2023-10-04 15:36:00 +05:00
|
|
|
public interface IWellOperationExcelParser<in TOptions>
|
|
|
|
where TOptions : IWellOperationImportOptions
|
2023-09-04 14:11:25 +05:00
|
|
|
{
|
2023-10-04 15:36:00 +05:00
|
|
|
/// <summary>
|
|
|
|
/// Метод парсинга документа
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="stream"></param>
|
|
|
|
/// <param name="options"></param>
|
|
|
|
/// <returns></returns>
|
|
|
|
SheetDto Parse(Stream stream, TOptions options);
|
2023-09-04 14:11:25 +05:00
|
|
|
}
|