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