10 lines
305 B
C#
10 lines
305 B
C#
using AyCode.Interfaces.Entities;
|
|
|
|
namespace FruitBank.Common.Interfaces;
|
|
|
|
public interface IMeasuringAttributeValues : IMeasuringWeights, IEntityInt
|
|
{
|
|
bool IsMeasurable { get; set; }
|
|
|
|
bool HasMeasuringValues(); //=> Id > 0 && NetWeight != null && GrossWeight != null && IsMeasurable != null;
|
|
} |