ลบรับโอน ขอโอน

This commit is contained in:
Kittapath 2023-08-05 17:53:07 +07:00
parent c56e3b06b9
commit 61ddd26c0e
11 changed files with 26700 additions and 175 deletions

View file

@ -0,0 +1,22 @@
using Microsoft.AspNetCore.Http;
using Microsoft.EntityFrameworkCore;
namespace BMA.EHR.Placement.Service.Requests
{
public class PlacementReceiveRequest
{
public string CitizenId { get; set; }
public Guid Prefix { get; set; }
public string Firstname { get; set; }
public string Lastname { get; set; }
public DateTime DateOfBirth { get; set; }
public Guid? Gender { get; set; }
public string? Nationality { get; set; }
public string? Race { get; set; }
public Guid? Religion { get; set; }
public Guid? BloodGroup { get; set; }
public Guid? Relationship { get; set; }
public string? TelephoneNumber { get; set; }
public List<FormFile>? File { get; set; }
}
}