44 lines
1.3 KiB
C#
44 lines
1.3 KiB
C#
using Kreta.BusinessLogic.Interfaces;
|
|
|
|
namespace Kreta.Web.Helpers.OsztalyCsoportSorolas
|
|
{
|
|
//public abstract class OsztalyCsoportSorolasModel
|
|
//{
|
|
// public string FromUrl { get; set; }
|
|
// public string FromChangeEvent { get; set; }
|
|
// public string FromPlaceholder { get; set; }
|
|
|
|
// public string ToUrl { get; set; }
|
|
// public string ToChangeEvent { get; set; }
|
|
// public string ToPlaceholder { get; set; }
|
|
|
|
// public string ZaradekUrl { get; set; }
|
|
// public string ZaradekPlaceholder { get; set; }
|
|
|
|
// public DateTime? Datum { get; set; }
|
|
// public string MinDatum { get; set; }
|
|
// public string MaxDatum { get; set; }
|
|
|
|
// public int? FromDDL { get; set; }
|
|
// public string[] FromElements { get; set; }
|
|
|
|
// public int? ToDDL { get; set; }
|
|
// public string[] ToElements { get; set; }
|
|
|
|
// public string ZaradekText { get; set; }
|
|
//}
|
|
|
|
public interface IOsztalyCsoportbaSorolasBase : IOsztalyCsoportbaSorolas
|
|
{
|
|
string FromUrl { get; set; }
|
|
string FromChangeEvent { get; set; }
|
|
string FromPlaceholder { get; set; }
|
|
|
|
string ToUrl { get; set; }
|
|
string ToChangeEvent { get; set; }
|
|
string ToPlaceholder { get; set; }
|
|
|
|
string MinDatum { get; set; }
|
|
string MaxDatum { get; set; }
|
|
}
|
|
}
|