Spreading Resistance Profile with ChartJS,

Copy-On-Get and nuget bump (Serilog)
This commit is contained in:
2023-05-16 08:20:35 -07:00
parent 6b409294e4
commit e084fdd58f
53 changed files with 2245 additions and 105 deletions

View File

@ -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);
}

View File

@ -0,0 +1,9 @@
namespace OI.Metrology.Shared.Models.Stateless;
public interface ISpreadingResistanceProfileService
{
byte[] GetImageBytes(string json);
byte[] GetImageBytes(Stream stream);
}