using FruitBank.Common.Dtos; using Mango.Nop.Core.Dtos; using Mango.Nop.Core.Entities; using Mango.Nop.Core.Interfaces; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FruitBank.Common.Interfaces { public interface IStockQuantityHistoryDto : IMgTStockQuantityHistoryDto//, IStockQuantityHistoryExt { public int? StockQuantityHistoryId { get; set; } public double? NetWeightAdjustment { get; set; } public double? NetWeight { get; set; } public bool IsInconsistent { get; set; } public StockQuantityHistoryExt? StockQuantityHistoryExt { get; set; } } }