สมัครสอบตามตำแหน่ง
This commit is contained in:
parent
bed23f911a
commit
43898213b2
25 changed files with 9062 additions and 307 deletions
|
|
@ -4,6 +4,7 @@ namespace BMA.EHR.Recurit.Exam.Service.Request
|
|||
{
|
||||
public class RequestBankExam
|
||||
{
|
||||
public Guid? Id { get; set; }
|
||||
public string? AccountNumber { get; set; }
|
||||
public string? BankName { get; set; }
|
||||
public string? AccountName { get; set; }
|
||||
|
|
|
|||
13
Request/RequestImportSeat.cs
Normal file
13
Request/RequestImportSeat.cs
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
using System.Net;
|
||||
using BMA.EHR.Recurit.Exam.Service.Models;
|
||||
|
||||
namespace BMA.EHR.Recurit.Exam.Service.Request
|
||||
{
|
||||
public class RequestImportSeat
|
||||
{
|
||||
public string? CitizenId { get; set; }
|
||||
public string? ExamIdenNumber { get; set; }
|
||||
public string? SeatNumber { get; set; }
|
||||
public string? Point { get; set; }
|
||||
}
|
||||
}
|
||||
|
|
@ -4,8 +4,10 @@ namespace BMA.EHR.Recurit.Exam.Service.Request
|
|||
{
|
||||
public class RequestPositionExam
|
||||
{
|
||||
public Guid? Id { get; set; }
|
||||
public Guid? PositionId { get; set; }
|
||||
public string? PositionName { get; set; }
|
||||
public string? TypeId { get; set; }
|
||||
public string? TypeName { get; set; }
|
||||
}
|
||||
}
|
||||
|
|
|
|||
11
Request/RequestPositionName.cs
Normal file
11
Request/RequestPositionName.cs
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
using System.Net;
|
||||
using BMA.EHR.Recurit.Exam.Service.Models;
|
||||
|
||||
namespace BMA.EHR.Recurit.Exam.Service.Request
|
||||
{
|
||||
public class RequestPositionName
|
||||
{
|
||||
public string? Name { get; set; }
|
||||
public PositionExam? Posiiton { get; set; }
|
||||
}
|
||||
}
|
||||
12
Request/RequestStatusExam.cs
Normal file
12
Request/RequestStatusExam.cs
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
using System.Net;
|
||||
using BMA.EHR.Recurit.Exam.Service.Models;
|
||||
|
||||
namespace BMA.EHR.Recurit.Exam.Service.Request
|
||||
{
|
||||
public class RequestStatusExam
|
||||
{
|
||||
public string? Name { get; set; }
|
||||
public bool Status { get; set; }
|
||||
public bool SetSeat { get; set; }
|
||||
}
|
||||
}
|
||||
|
|
@ -6,7 +6,7 @@ namespace BMA.EHR.Recurit.Exam.Service.Request
|
|||
public class RequestStatusRegistry
|
||||
{
|
||||
public bool Consend { get; set; }
|
||||
public bool Poition { get; set; }
|
||||
public bool Position { get; set; }
|
||||
public string? Status { get; set; }
|
||||
public PositionExam? PositionExam { get; set; }
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue