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