25 lines
561 B
C#
25 lines
561 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Kreta.BusinessLogic.HelperClasses.OsztalyCsoportbaSorolas;
|
|
|
|
namespace Kreta.BusinessLogic.Interfaces
|
|
{
|
|
public interface IOsztalyCsoportbaSorolas
|
|
{
|
|
DateTime? Datum { get; set; }
|
|
|
|
int? FromDDL { get; }
|
|
|
|
string[] FromElements { get; }
|
|
|
|
int? ToDDL { get; }
|
|
|
|
List<OsztalybaSororlasItem> ToElements { get; }
|
|
|
|
bool EgyeniCsoportAutoLetrehozas { get; set; }
|
|
|
|
SorolasZaradek Zaradek { get; set; }
|
|
|
|
bool IsFromSzervezet { get; set; }
|
|
}
|
|
}
|