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