11 lines
363 B
C#
11 lines
363 B
C#
using FruitBank.Common.Entities;
|
|
using FruitBank.Common.Interfaces;
|
|
using Mango.Nop.Data.Interfaces;
|
|
using Nop.Data;
|
|
|
|
namespace Nop.Plugin.Misc.FruitBankPlugin.Domains.DataLayer.Interfaces;
|
|
|
|
public interface IShippingDocumentDbSet<TDbTable> : IMgDbTableBase where TDbTable : IRepository<ShippingDocument>
|
|
{
|
|
public TDbTable ShippingDocuments { get; set; }
|
|
} |