18 lines
408 B
C#
18 lines
408 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Kreta.DataAccess.Interfaces
|
|
{
|
|
public interface IFenntarto : IEntity
|
|
{
|
|
string Nev { get; set; }
|
|
string Azonosito { get; set; }
|
|
Guid Guid { get; set; }
|
|
int? LegmagasabbSzintuFenntartoId { get; set; }
|
|
bool IsTesztFenntarto { get; set; }
|
|
|
|
IReadOnlyList<IIntezmeny> Intezmeny { get; }
|
|
|
|
}
|
|
}
|
|
|