using FruitBank.Common.Entities; using Mango.Nop.Data.Interfaces; using Nop.Data; namespace Nop.Plugin.Misc.FruitBankPlugin.Domains.DataLayer.Interfaces; public interface IStockTakingDbSet : IMgDbTableBase where TDbTable : IRepository { public TDbTable StockTakings { get; set; } }