Mango.Nop.Libraries/Mango.Nop.Core/Interfaces/IMgModelDtoBase.cs

15 lines
386 B
C#

using AyCode.Interfaces;
using AyCode.Interfaces.Entities;
using Nop.Core;
namespace Mango.Nop.Core.Interfaces;
public interface IMgModelDtoBase : IEntityInt, IAcModelDtoBaseEmpty //: IAcModelDtoBase //TODO: IEntityGuid gond... - J.
{
}
public interface IMgModelDtoBase<out TMainEntity> : IMgModelDtoBase where TMainEntity : BaseEntity
{
TMainEntity CreateMainEntity();
}