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