forked from ddrilling/AsbCloudServer
20 lines
612 B
C#
20 lines
612 B
C#
using System.IO;
|
|
using AsbCloudApp.Data.WellOperationImport;
|
|
using AsbCloudApp.Data.WellOperationImport.Options;
|
|
|
|
namespace AsbCloudApp.Services.WellOperationImport;
|
|
|
|
/// <summary>
|
|
/// Парсинг операций из excel файла
|
|
/// </summary>
|
|
public interface IWellOperationExcelParser<in TOptions>
|
|
where TOptions : IWellOperationImportOptions
|
|
{
|
|
/// <summary>
|
|
/// Метод парсинга документа
|
|
/// </summary>
|
|
/// <param name="stream"></param>
|
|
/// <param name="options"></param>
|
|
/// <returns></returns>
|
|
SheetDto Parse(Stream stream, TOptions options);
|
|
} |