DD.WellWorkover.Cloud/AsbCloudApp/Services/IWellOperationImportService.cs
Фролов 9117471f82 WellOperationImportService Add GetTemplate(),
Improve error handling.
2021-10-11 13:45:06 +05:00

11 lines
287 B
C#

using System.IO;
namespace AsbCloudApp.Services
{
public interface IWellOperationImportService
{
Stream Export(int idWell);
Stream GetExcelTemplateStream();
void Import(int idWell, Stream stream, bool deleteWellOperationsBeforeImport = false);
}
}