21 lines
No EOL
432 B
Text
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 |