Mango.Nop.Plugins/Nop.Plugin.Misc.AIPlugin/Domains/DataLayer/Interfaces/IOrderDtoDbSet.cs

11 lines
330 B
C#

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<TDbTable> : IMgDbTableBase where TDbTable : IRepository<OrderDto>
{
public TDbTable OrderDtos { get; set; }
}