improvements, fixes, etc..

This commit is contained in:
Loretta 2024-11-17 16:26:50 +01:00
parent 3f5eb9f0db
commit d1ff490d36
2 changed files with 7 additions and 8 deletions

View File

@ -1,7 +0,0 @@
namespace Mango.Nop.Core
{
public class Class1
{
}
}

View File

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