13 lines
560 B
C#
13 lines
560 B
C#
using OI.Metrology.Shared.Services;
|
|
using System.Net;
|
|
|
|
namespace OI.Metrology.Shared.Models.Stateless;
|
|
|
|
public interface IInboundRepository
|
|
{
|
|
|
|
bool IsIPAddressAllowed(string inboundApiAllowedIPList, IPAddress? remoteIP);
|
|
DataResponse Data(IMetrologyRepository metrologyRepository, IInboundDataService inboundDataService, string tooltype, string? json);
|
|
string? AttachFile(IMetrologyRepository metrologyRepository, IAttachmentsService attachmentsService, string tooltype, long headerid, string datauniqueid, string fileName, object uploadedFile);
|
|
|
|
} |