Browse Source

Prepare project to Entity Framework with base classes

master
Daniel Gyulai 5 years ago
parent
commit
eb64fedb02
  1. 1
      CoviDok/CoviDok.csproj
  2. 24
      CoviDok/data/Assistant.cs
  3. 20
      CoviDok/data/Case.cs
  4. 17
      CoviDok/data/Child.cs
  5. 26
      CoviDok/data/Doctor.cs
  6. 14
      CoviDok/data/Image.cs
  7. 24
      CoviDok/data/Parent.cs
  8. 15
      CoviDok/data/Update.cs

1
CoviDok/CoviDok.csproj

@ -8,6 +8,7 @@
<ItemGroup>
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.10.9" />
<PackageReference Include="MySql.Data.EntityFrameworkCore" Version="8.0.21" />
</ItemGroup>
</Project>

24
CoviDok/data/Assistant.cs

@ -0,0 +1,24 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace CoviDok.data
{
public class Assistant
{
public string Id { get; set; }
public string Email { get; set; }
public string Password { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public DateTime RegistrationDate { get; set; }
public string DoctorId { get; set; }
}
}

20
CoviDok/data/Case.cs

@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace CoviDok.data
{
public class Case
{
public string DoctorID { get; set; }
public string ParentID { get; set; }
public string ChildID { get; set; }
public ICollection<Update> updates = new List<Update>();
public string Assignee { get; set; }
}
}

17
CoviDok/data/Child.cs

@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace CoviDok.data
{
public class Child
{
public string Id { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public string DoctorId { get; set; }
public string ParentId { get; set; }
public ICollection<Case> MedicalHistory { get; } = new List<Case>();
}
}

26
CoviDok/data/Doctor.cs

@ -0,0 +1,26 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace CoviDok.data
{
public class Doctor
{
public string Id { get; set; }
public string Email { get; set; }
public string Password { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public DateTime RegistrationDate { get; set; }
public ICollection<Child> Children { get; } = new List<Child>();
public ICollection<Assistant> Assistants { get; } = new List<Assistant>();
}
}

14
CoviDok/data/Image.cs

@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace CoviDok.data
{
//Store Image ID, get actual content from MinIO backend.
public class Image
{
public string ImageID { get; set; }
}
}

24
CoviDok/data/Parent.cs

@ -0,0 +1,24 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace CoviDok.data
{
public class Parent
{
public string Id { get; set; }
public string Email { get; set; }
public string Password { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public DateTime RegistrationDate { get; set; }
public ICollection<Child> Children { get; } = new List<Child>();
}
}

15
CoviDok/data/Update.cs

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace CoviDok.data
{
public class Update
{
public string Sender { get; set; }
public string Content { get; set; }
public ICollection<Image> Images = new List<Image>();
}
}
Loading…
Cancel
Save