22 lines
784 B
C#
22 lines
784 B
C#
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 BirthDate { 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 List<FormFile>? File { get; set; }
|
|
}
|
|
}
|