forked from ddrilling/AsbCloudServer
10 lines
246 B
C#
10 lines
246 B
C#
using System.IO;
|
|
|
|
namespace AsbCloudApp.Services
|
|
{
|
|
public interface IWellOperationImportService
|
|
{
|
|
Stream Export(int idWell);
|
|
void Import(int idWell, Stream stream, bool deleteWellOperationsBeforeImport = false);
|
|
}
|
|
} |