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