แก้ไขข้อมมูลบุคคลบรรจุ
This commit is contained in:
parent
0c56512f54
commit
258a95a0e2
19 changed files with 11975 additions and 231 deletions
41
BMA.EHR.Placement.Service/Requests/PersonFamilyRequest.cs
Normal file
41
BMA.EHR.Placement.Service/Requests/PersonFamilyRequest.cs
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
using BMA.EHR.Domain.Models.MetaData;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace BMA.EHR.Placement.Service.Requests
|
||||
{
|
||||
public class PersonFamilyRequest
|
||||
{
|
||||
public bool? Couple { get; set; }
|
||||
public Guid? CouplePrefixId { get; set; }
|
||||
public string? CoupleFirstName { get; set; }
|
||||
public string? CoupleLastName { get; set; }
|
||||
public string? CoupleLastNameOld { get; set; }
|
||||
public string? CoupleCareer { get; set; }
|
||||
public string? CoupleCitizenId { get; set; }
|
||||
public bool CoupleLive { get; set; }
|
||||
|
||||
public Guid? FatherPrefixId { get; set; }
|
||||
public string? FatherFirstName { get; set; }
|
||||
public string? FatherLastName { get; set; }
|
||||
public string? FatherCareer { get; set; }
|
||||
public string? FatherCitizenId { get; set; }
|
||||
public bool FatherLive { get; set; }
|
||||
|
||||
public Guid? MotherPrefixId { get; set; }
|
||||
public string? MotherFirstName { get; set; }
|
||||
public string? MotherLastName { get; set; }
|
||||
public string? MotherCareer { get; set; }
|
||||
public string? MotherCitizenId { get; set; }
|
||||
public bool MotherLive { get; set; }
|
||||
public virtual List<ProfileChildrenRequest> Childrens { get; set; } = new List<ProfileChildrenRequest>();
|
||||
}
|
||||
public class ProfileChildrenRequest
|
||||
{
|
||||
public Guid? ChildrenPrefixId { get; set; }
|
||||
public string? ChildrenFirstName { get; set; }
|
||||
public string? ChildrenLastName { get; set; }
|
||||
public string? ChildrenCareer { get; set; }
|
||||
public string? ChildrenCitizenId { get; set; }
|
||||
public string ChildrenLive { get; set; }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue