2023-04-04 14:08:56 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace UniversityContracts.SearchModels
|
|
|
|
|
{
|
|
|
|
|
public class StudentSearchModel
|
|
|
|
|
{
|
|
|
|
|
public int? Id { get; set; }
|
2023-04-07 17:34:20 +04:00
|
|
|
|
public int? StudentCard { get; set; }
|
2023-04-07 13:24:39 +04:00
|
|
|
|
public int? UserId { get; set; }
|
2023-05-17 22:54:39 +04:00
|
|
|
|
public int? EducationStatusId { get; set; }
|
2023-04-07 17:34:20 +04:00
|
|
|
|
public DateTime? DateFrom { get; set; }
|
|
|
|
|
public DateTime? DateTo { get; set; }
|
2023-04-07 19:09:06 +04:00
|
|
|
|
public bool? Disciplines { get; set; }
|
2023-05-17 16:47:38 +04:00
|
|
|
|
public int? PageNumber { get; set; }
|
|
|
|
|
public int? PageSize { get; set; }
|
|
|
|
|
}
|
2023-04-04 14:08:56 +04:00
|
|
|
|
}
|