You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.3 KiB
45 lines
1.3 KiB
using CoviDok.Api.Objects;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CoviDok.Data.Model
|
|
{
|
|
public class Child : User
|
|
{
|
|
public int DoctorId { get; set; }
|
|
public int ParentId { get; set; }
|
|
//public ICollection<Case> MedicalHistory { get; set; } = new List<Case>();
|
|
public string SSN { get; set; }
|
|
public Gender Gender { get; set; }
|
|
|
|
public PublicChild ToPublic()
|
|
{
|
|
return new PublicChild
|
|
{
|
|
FirstName = FirstName,
|
|
LastName = LastName,
|
|
DoctorId = DoctorId,
|
|
ParentId = ParentId,
|
|
SSN = SSN,
|
|
BirthDate = BirthDate,
|
|
ImageId = ImageId,
|
|
Id = Id,
|
|
Gender = Gender,
|
|
Role = Api.Role.Chi
|
|
};
|
|
}
|
|
public void UpdateSelf(PublicChild newVal)
|
|
{
|
|
FirstName = newVal.FirstName;
|
|
LastName = newVal.LastName;
|
|
DoctorId = newVal.DoctorId;
|
|
ParentId = newVal.ParentId;
|
|
SSN = newVal.SSN;
|
|
BirthDate = newVal.BirthDate;
|
|
ImageId = newVal.ImageId;
|
|
Gender = newVal.Gender;
|
|
}
|
|
}
|
|
}
|
|
|