Browse Source

Added Gender support for Child, and Role for everybody else

master
Daniel Gyulai 4 years ago
parent
commit
f45dd6cf62
  1. 5
      CoviDok/Api/Objects/PublicAssistant.cs
  2. 6
      CoviDok/Api/Objects/PublicChild.cs
  3. 5
      CoviDok/Api/Objects/PublicDoctor.cs
  4. 7
      CoviDok/Api/Objects/PublicParent.cs
  5. 3
      CoviDok/Api/Role.cs
  6. 5
      CoviDok/Data/Model/Assistant.cs
  7. 5
      CoviDok/Data/Model/Child.cs
  8. 5
      CoviDok/Data/Model/Doctor.cs
  9. 9
      CoviDok/Data/Model/Gender.cs
  10. 12
      CoviDok/Data/Model/Parent.cs
  11. 4
      CoviDok/Data/Model/User.cs

5
CoviDok/Api/Objects/PublicAssistant.cs

@ -1,4 +1,5 @@
using System; using CoviDok.Data.Model;
using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Threading.Tasks; using System.Threading.Tasks;
@ -14,5 +15,7 @@ namespace CoviDok.Api.Objects
public string Email { get; set; } public string Email { get; set; }
public int ID { get; set; } public int ID { get; set; }
public string PictureID { get; set; } public string PictureID { get; set; }
public Gender Gender { get; set; }
public Role Role { get; set; }
} }
} }

6
CoviDok/Api/Objects/PublicChild.cs

@ -1,7 +1,9 @@
using System; using CoviDok.Data.Model;
using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Threading.Tasks; using System.Threading.Tasks;
using static CoviDok.Data.Model.User;
namespace CoviDok.Api.Objects namespace CoviDok.Api.Objects
{ {
@ -16,5 +18,7 @@ namespace CoviDok.Api.Objects
public string SSN { get; set; } public string SSN { get; set; }
public DateTime BirthDate { get; set; } public DateTime BirthDate { get; set; }
public string PictureId { get; set; } public string PictureId { get; set; }
public Gender Gender { get; set; }
public Role Role { get; set; }
} }
} }

5
CoviDok/Api/Objects/PublicDoctor.cs

@ -1,4 +1,5 @@
using System; using CoviDok.Data.Model;
using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Threading.Tasks; using System.Threading.Tasks;
@ -13,6 +14,8 @@ namespace CoviDok.Api.Objects
public string LastName { get; set; } public string LastName { get; set; }
public string PictureID { get; set; } public string PictureID { get; set; }
public string Email { get; set; } public string Email { get; set; }
public Gender Gender { get; set; }
public Role Role { get; set; }
} }
} }

7
CoviDok/Api/Objects/PublicParent.cs

@ -1,4 +1,5 @@
using System; using CoviDok.Data.Model;
using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Threading.Tasks; using System.Threading.Tasks;
@ -13,6 +14,8 @@ namespace CoviDok.Api.Objects
public string LastName { get; set; } public string LastName { get; set; }
public string Email { get; set; } public string Email { get; set; }
public ICollection<PublicChild> Children { get; set; } = new List<PublicChild>(); public ICollection<PublicChild> Children { get; set; } = new List<PublicChild>();
public string PictureID { get; internal set; } public string PictureID { get; set; }
public Gender Gender { get; set; }
public Role Role { get; set; }
} }
} }

3
CoviDok/Api/Role.cs

@ -9,6 +9,7 @@ namespace CoviDok.Api
{ {
Doc, Doc,
Ast, Ast,
Par Par,
Chi
} }
} }

5
CoviDok/Data/Model/Assistant.cs

@ -17,6 +17,7 @@ namespace CoviDok.Data.Model
Email = assistant.Email; Email = assistant.Email;
PictureId = assistant.PictureID; PictureId = assistant.PictureID;
DoctorId = assistant.DoctorId; DoctorId = assistant.DoctorId;
Gender = assistant.Gender;
} }
public PublicAssistant ToPublic() public PublicAssistant ToPublic()
{ {
@ -27,7 +28,9 @@ namespace CoviDok.Data.Model
Email = Email, Email = Email,
PictureID = PictureId, PictureID = PictureId,
ID = Id, ID = Id,
DoctorId = DoctorId DoctorId = DoctorId,
Gender = Gender,
Role = Api.Role.Ast
}; };
} }
} }

5
CoviDok/Data/Model/Child.cs

@ -23,7 +23,9 @@ namespace CoviDok.Data.Model
ParentId = ParentId, ParentId = ParentId,
SSN = SSN, SSN = SSN,
BirthDate = BirthDate, BirthDate = BirthDate,
PictureId = PictureId PictureId = PictureId,
Gender = Gender,
Role = Api.Role.Chi
}; };
} }
public void UpdateSelf(PublicChild newVal) public void UpdateSelf(PublicChild newVal)
@ -35,6 +37,7 @@ namespace CoviDok.Data.Model
SSN = newVal.SSN; SSN = newVal.SSN;
BirthDate = newVal.BirthDate; BirthDate = newVal.BirthDate;
PictureId = newVal.PictureId; PictureId = newVal.PictureId;
Gender = newVal.Gender;
} }
} }
} }

5
CoviDok/Data/Model/Doctor.cs

@ -17,6 +17,7 @@ namespace CoviDok.Data.Model
LastName = doctor.LastName; LastName = doctor.LastName;
Email = doctor.Email; Email = doctor.Email;
PictureId = doctor.PictureID; PictureId = doctor.PictureID;
Gender = doctor.Gender;
} }
public PublicDoctor ToPublic() public PublicDoctor ToPublic()
{ {
@ -26,7 +27,9 @@ namespace CoviDok.Data.Model
LastName = LastName, LastName = LastName,
Email = Email, Email = Email,
PictureID = PictureId, PictureID = PictureId,
ID = Id ID = Id,
Gender = Gender,
Role = Api.Role.Doc
}; };
} }

9
CoviDok/Data/Model/Gender.cs

@ -0,0 +1,9 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace CoviDok.Data.Model
{
public enum Gender { Male, Female }
}

12
CoviDok/Data/Model/Parent.cs

@ -16,16 +16,24 @@ namespace CoviDok.Data.Model
LastName = parent.LastName; LastName = parent.LastName;
Email = parent.Email; Email = parent.Email;
PictureId = parent.PictureID; PictureId = parent.PictureID;
Gender = parent.Gender;
} }
public PublicParent ToPublic() public PublicParent ToPublic()
{ {
return new PublicParent { PublicParent p= new PublicParent {
FirstName = FirstName, FirstName = FirstName,
LastName = LastName, LastName = LastName,
Email = Email, Email = Email,
PictureID = PictureId, PictureID = PictureId,
ID = Id ID = Id,
Gender = Gender,
Role = Api.Role.Par
}; };
foreach (Child child in Children)
{
p.Children.Add(child.ToPublic());
}
return p;
} }
} }
} }

4
CoviDok/Data/Model/User.cs

@ -15,5 +15,7 @@ namespace CoviDok.Data.Model
public DateTime RegistrationDate { get; set; } public DateTime RegistrationDate { get; set; }
public string PictureId { get; set; } public string PictureId { get; set; }
}
public Gender Gender { get; set; }
}
} }

Loading…
Cancel
Save