2023-04-05 00:58:22 +07:00
|
|
|
|
using System.Net;
|
|
|
|
|
|
using BMA.EHR.Recurit.Exam.Service.Models;
|
|
|
|
|
|
|
|
|
|
|
|
namespace BMA.EHR.Recurit.Exam.Service.Request
|
|
|
|
|
|
{
|
|
|
|
|
|
public class RequestStatusRegistry
|
|
|
|
|
|
{
|
|
|
|
|
|
public bool Consend { get; set; }
|
2023-04-06 03:06:17 +07:00
|
|
|
|
public bool Position { get; set; }
|
2023-04-06 15:42:43 +07:00
|
|
|
|
public bool Bank { get; set; }
|
2023-04-07 11:10:15 +07:00
|
|
|
|
public bool Payment { get; set; }
|
2023-10-04 18:04:56 +07:00
|
|
|
|
public bool CanRegister { get; set; }
|
2023-04-05 00:58:22 +07:00
|
|
|
|
public string? Status { get; set; }
|
2023-10-02 00:22:28 +07:00
|
|
|
|
public string? EditorCondition { get; set; }
|
|
|
|
|
|
public string? EditorConfirm { get; set; }
|
2023-04-05 00:58:22 +07:00
|
|
|
|
public PositionExam? PositionExam { get; set; }
|
2023-10-04 18:04:56 +07:00
|
|
|
|
public DateTime? RegisterEndDate { get; set; }
|
|
|
|
|
|
public DateTime? RegisterStartDate { get; set; }
|
2025-11-18 13:21:57 +07:00
|
|
|
|
public int? graduationYearLock { get; set; }
|
2023-04-05 00:58:22 +07:00
|
|
|
|
}
|
|
|
|
|
|
}
|