23 lines
755 B
C#
23 lines
755 B
C#
using System;
|
|
|
|
namespace Elwig.Helpers.Weighing {
|
|
public class SchemberScale : IEventScale {
|
|
|
|
public string Manufacturer => "Schember";
|
|
public string Model => throw new NotImplementedException();
|
|
public string ScaleId => throw new NotImplementedException();
|
|
public int InternalScaleNr => throw new NotImplementedException();
|
|
public bool IsReady => throw new NotImplementedException();
|
|
public bool HasFillingClearance => throw new NotImplementedException();
|
|
public int? WeightLimit => throw new NotImplementedException();
|
|
public string? LogPath => throw new NotImplementedException();
|
|
|
|
public void Dispose() {
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
|
|
|
|
}
|
|
}
|