kreta/Tools/CodeGeneration/Templates/Server/DataAccess/Entity/InterfaceBase.tdl
2024-03-13 00:33:46 +01:00

21 lines
No EOL
432 B
Text

template GenerateIEntityBaseClass()
[BOM]namespace Kreta.DataAccess.Interfaces
{
public interface IEntity
{
int ID { get; set; }
bool Torolt { get; set; }
}
}
end template
template GenerateIAssociatedCollection()
[BOM]using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IAssociatedCollection<out TEntityType> : IEnumerable<TEntityType>
{
}
}
end template