forked from ddrilling/AsbCloudServer
9117471f82
Improve error handling.
11 lines
287 B
C#
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);
|
|
}
|
|
} |