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 : IModelDtoBase where TMainEntity : BaseEntity { TMainEntity CreateMainEntity(); }