Spreading Resistance Profile with ChartJS,
Copy-On-Get and nuget bump (Serilog)
This commit is contained in:
@ -0,0 +1,14 @@
|
||||
namespace OI.Metrology.Shared.Models.Stateless;
|
||||
|
||||
public interface ISpreadingResistanceProfileController<T>
|
||||
{
|
||||
|
||||
enum Action : int
|
||||
{
|
||||
Index = 0
|
||||
}
|
||||
|
||||
static string GetRouteName() => nameof(ISpreadingResistanceProfileController<T>)[1..^10];
|
||||
T GetAttachment(int toolTypeId, string tabletype, string attachmentId, string filename);
|
||||
|
||||
}
|
@ -0,0 +1,9 @@
|
||||
namespace OI.Metrology.Shared.Models.Stateless;
|
||||
|
||||
public interface ISpreadingResistanceProfileService
|
||||
{
|
||||
|
||||
byte[] GetImageBytes(string json);
|
||||
byte[] GetImageBytes(Stream stream);
|
||||
|
||||
}
|
Reference in New Issue
Block a user