improvements, fixes, etc..
This commit is contained in:
parent
3f5eb9f0db
commit
d1ff490d36
|
|
@ -1,7 +0,0 @@
|
||||||
namespace Mango.Nop.Core
|
|
||||||
{
|
|
||||||
public class Class1
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,9 +1,15 @@
|
||||||
using AyCode.Interfaces;
|
using AyCode.Interfaces;
|
||||||
using AyCode.Interfaces.Entities;
|
using AyCode.Interfaces.Entities;
|
||||||
|
using Nop.Core;
|
||||||
|
|
||||||
namespace Mango.Nop.Core.Interfaces;
|
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();
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue