20 lines
452 B
C#
20 lines
452 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Kreta.DataAccess.Interfaces
|
|
{
|
|
public interface IApaczaiKgrJogosult : IEntity
|
|
{
|
|
int? Osszeg { get; set; }
|
|
int StatuszId { get; set; }
|
|
|
|
int TanuloId { get; set; }
|
|
ITanulo Tanulo { get; set; }
|
|
int IntezmenyId { get; set; }
|
|
IIntezmeny Intezmeny { get; set; }
|
|
int TanevId { get; set; }
|
|
ITanev Tanev { get; set; }
|
|
|
|
}
|
|
}
|
|
|