oi-metrology/Shared/Services/IAttachmentsService.cs
Mike Phares 811f45a7df NginxFileSystem
Remove Reactors and Working Directory
AppSettings
2024-03-18 12:59:15 -07:00

12 lines
596 B
C#

namespace OI.Metrology.Shared.Services;
using DataModels;
using OI.Metrology.Shared.Models.Stateless;
public interface IAttachmentsService
{
Stream GetAttachmentStreamByTitle(ToolType toolType, bool header, string title, string filename);
Stream GetAttachmentStreamByAttachmentId(ToolType toolType, bool header, Guid attachmentId, string filename);
string? GetProcessDataStandardFormat(IMetrologyRepository metrologyRepository, int toolTypeId, long headerId);
void SaveAttachment(ToolType toolType, long headerId, string dataUniqueId, string filename, object uploadedFile);
}