10 lines
312 B
C#
10 lines
312 B
C#
using FruitBank.Common.Dtos;
|
|
using Mango.Nop.Data.Interfaces;
|
|
using Nop.Data;
|
|
|
|
namespace Nop.Plugin.Misc.FruitBankPlugin.Domains.DataLayer.Interfaces;
|
|
|
|
public interface IOrderItemDtoDbSet<TDbTable> : IMgDbTableBase where TDbTable : IRepository<OrderItemDto>
|
|
{
|
|
public TDbTable OrderItemDtos { get; set; }
|
|
} |