12 lines
426 B
C#
12 lines
426 B
C#
using FruitBank.Common.Dtos;
|
|
using Mango.Nop.Core.Interfaces;
|
|
using Mango.Nop.Core.Interfaces.ForeignKeys;
|
|
|
|
namespace FruitBank.Common.Interfaces;
|
|
|
|
public interface IProductDto : IMgProductDto, ITare, IIncomingQuantity, IAvailableQuantity, IMeasuringAttributeValues, IGenericAttributeForeignCollection<List<GenericAttributeDto>>
|
|
{
|
|
public double AverageWeight { get; }
|
|
|
|
public double AverageWeightTreshold { get; }
|
|
} |