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 ToElements { get; } bool EgyeniCsoportAutoLetrehozas { get; set; } SorolasZaradek Zaradek { get; set; } bool IsFromSzervezet { get; set; } } }