|
using AyCode.Interfaces.Entities;
|
|
|
|
namespace FruitBank.Common.Interfaces;
|
|
|
|
public interface IMeasuringAttributeValues : IEntityInt, IMeasuringWeights, IMeasurable
|
|
{
|
|
bool HasMeasuringValues(); //=> Id > 0 && NetWeight != null && GrossWeight != null && IsMeasurable != null;
|
|
} |