10 lines
343 B
C#
10 lines
343 B
C#
using FruitBank.Common.Entities;
|
|
using Mango.Nop.Data.Interfaces;
|
|
using Nop.Data;
|
|
|
|
namespace Nop.Plugin.Misc.FruitBankPlugin.Domains.DataLayer.Interfaces;
|
|
|
|
public interface IStockTakingItemPalletDbSet<TDbTable> : IMgDbTableBase where TDbTable : IRepository<StockTakingItemPallet>
|
|
{
|
|
public TDbTable StockTakingItemPallets { get; set; }
|
|
} |