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.Linq;
using System.Threading.Tasks;
@ -14,5 +15,7 @@ namespace CoviDok.Api.Objects
public string Email { get; set; }
public int ID { 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.Linq;
using System.Threading.Tasks;
using static CoviDok.Data.Model.User;
namespace CoviDok.Api.Objects
{
@ -16,5 +18,7 @@ namespace CoviDok.Api.Objects
public string SSN { get; set; }
public DateTime BirthDate { 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.Linq;
using System.Threading.Tasks;
@ -13,6 +14,8 @@ namespace CoviDok.Api.Objects
public string LastName { get; set; }
public string PictureID { 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.Linq;
using System.Threading.Tasks;
@ -13,6 +14,8 @@ namespace CoviDok.Api.Objects
public string LastName { get; set; }
public string Email { get; set; }
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,
Ast,
Par
Par,
Chi
}
}

5
CoviDok/Data/Model/Assistant.cs

@ -17,6 +17,7 @@ namespace CoviDok.Data.Model
Email = assistant.Email;
PictureId = assistant.PictureID;
DoctorId = assistant.DoctorId;
Gender = assistant.Gender;
}
public PublicAssistant ToPublic()
{
@ -27,7 +28,9 @@ namespace CoviDok.Data.Model
Email = Email,
PictureID = PictureId,
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,
SSN = SSN,
BirthDate = BirthDate,
PictureId = PictureId
PictureId = PictureId,
Gender = Gender,
Role = Api.Role.Chi
};
}
public void UpdateSelf(PublicChild newVal)
@ -35,6 +37,7 @@ namespace CoviDok.Data.Model
SSN = newVal.SSN;
BirthDate = newVal.BirthDate;
PictureId = newVal.PictureId;
Gender = newVal.Gender;
}
}
}

5
CoviDok/Data/Model/Doctor.cs

@ -17,6 +17,7 @@ namespace CoviDok.Data.Model
LastName = doctor.LastName;
Email = doctor.Email;
PictureId = doctor.PictureID;
Gender = doctor.Gender;
}
public PublicDoctor ToPublic()
{
@ -26,7 +27,9 @@ namespace CoviDok.Data.Model
LastName = LastName,
Email = Email,
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;
Email = parent.Email;
PictureId = parent.PictureID;
Gender = parent.Gender;
}
public PublicParent ToPublic()
{
return new PublicParent {
PublicParent p= new PublicParent {
FirstName = FirstName,
LastName = LastName,
Email = Email,
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 string PictureId { get; set; }
}
public Gender Gender { get; set; }
}
}

Loading…
Cancel
Save