|
namespace FruitBank.Common.Interfaces;
|
|
|
|
public interface IMeasuringWeights : IMeasuringGrossWeight, IMeasuringNetWeight
|
|
{
|
|
}
|
|
|
|
public interface IMeasuringNetWeight
|
|
{
|
|
double NetWeight { get; set; }
|
|
}
|
|
|
|
public interface IMeasuringGrossWeight
|
|
{
|
|
double GrossWeight { get; set; }
|
|
} |