18 lines
378 B
C#
18 lines
378 B
C#
using AyCode.Interfaces;
|
|
using AyCode.Interfaces.Entities;
|
|
using Nop.Core;
|
|
|
|
namespace Mango.Nop.Core.Dtos;
|
|
|
|
public interface IModelDtoBaseEmpty : IAcModelDtoBaseEmpty
|
|
{
|
|
}
|
|
|
|
public interface IModelDtoBase : IEntityInt, IModelDtoBaseEmpty
|
|
{
|
|
}
|
|
|
|
public interface IModelDtoBase<out TMainEntity> : IModelDtoBase where TMainEntity : BaseEntity
|
|
{
|
|
TMainEntity CreateMainEntity();
|
|
} |