hrms-api-backend/BMA.EHR.Retirement.Service/Requests/RetirementOtherEditRequest.cs

31 lines
1.3 KiB
C#

using Microsoft.AspNetCore.Http;
using Microsoft.EntityFrameworkCore;
namespace BMA.EHR.Retirement.Service.Requests
{
public class RetirementOtherEditRequest
{
// public string CitizenId { get; set; }
// public Guid PrefixId { get; set; }
// public string Firstname { get; set; }
// public string Lastname { get; set; }
// public DateTime DateOfBirth { get; set; }
// public Guid? GenderId { get; set; }
// public string? Nationality { get; set; }
// public string? Race { get; set; }
// public Guid? ReligionId { get; set; }
// public Guid? BloodGroupId { get; set; }
// public Guid? RelationshipId { get; set; }
// public string? TelephoneNumber { get; set; }
public string? Reason { get; set; }
public string? EducationOld { get; set; }
public string? OrganizationPositionOld { get; set; }
public string? PositionTypeOld { get; set; }
public string? PositionLevelOld { get; set; }
public string? PositionNumberOld { get; set; }
// public double? Amount { get; set; }
public double? AmountOld { get; set; }
public DateTime? PositionDate { get; set; }
public DateTime? MilitaryDate { get; set; }
}
}