DD.WellWorkover.Cloud/AsbCloudApp/Services/IWellOperationImportService.cs

11 lines
287 B
C#
Raw Normal View History

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