using FruitBank.Common.Dtos; using Mango.Nop.Data.Interfaces; using Nop.Core.Domain.Orders; using Nop.Data; namespace Nop.Plugin.Misc.FruitBankPlugin.Domains.DataLayer.Interfaces; public interface IOrderDtoDbSet : IMgDbTableBase where TDbTable : IRepository { public TDbTable OrderDtos { get; set; } }