From 4eebdb94b4e1785bfb7a20425128605018ec5e46 Mon Sep 17 00:00:00 2001 From: esantangelo <enzo020895@gmail.com> Date: Sun, 6 Dec 2020 20:07:30 -0300 Subject: [PATCH] entities and configuration --- Tsi1.Api/Tsi1.DataLayer/Entities/Activity.cs | 4 +++ .../Tsi1.DataLayer/Entities/Evaluation.cs | 28 ++++++++++++++++++ .../Entities/EvaluationInscription.cs | 21 ++++++++++++++ .../Tsi1.DataLayer/Entities/EvaluationType.cs | 13 +++++++++ Tsi1.Api/Tsi1.DataLayer/Entities/File.cs | 6 ++++ Tsi1.Api/Tsi1.DataLayer/Entities/Student.cs | 6 ++++ .../Tsi1.DataLayer/Entities/Submission.cs | 23 +++++++++++++++ .../EvaluationConfiguration.cs | 17 +++++++++++ .../EvaluationInscriptionConfiguration.cs | 29 +++++++++++++++++++ .../EvaluationTypeConfiguration.cs | 24 +++++++++++++++ .../EntityConfiguration/FileConfiguration.cs | 4 +++ .../SubmissionConfiguration.cs | 28 ++++++++++++++++++ 12 files changed, 203 insertions(+) create mode 100644 Tsi1.Api/Tsi1.DataLayer/Entities/Evaluation.cs create mode 100644 Tsi1.Api/Tsi1.DataLayer/Entities/EvaluationInscription.cs create mode 100644 Tsi1.Api/Tsi1.DataLayer/Entities/EvaluationType.cs create mode 100644 Tsi1.Api/Tsi1.DataLayer/Entities/Submission.cs create mode 100644 Tsi1.Api/Tsi1.DataLayer/EntityConfiguration/EvaluationConfiguration.cs create mode 100644 Tsi1.Api/Tsi1.DataLayer/EntityConfiguration/EvaluationInscriptionConfiguration.cs create mode 100644 Tsi1.Api/Tsi1.DataLayer/EntityConfiguration/EvaluationTypeConfiguration.cs create mode 100644 Tsi1.Api/Tsi1.DataLayer/EntityConfiguration/SubmissionConfiguration.cs diff --git a/Tsi1.Api/Tsi1.DataLayer/Entities/Activity.cs b/Tsi1.Api/Tsi1.DataLayer/Entities/Activity.cs index ca3a040..7a1bd88 100644 --- a/Tsi1.Api/Tsi1.DataLayer/Entities/Activity.cs +++ b/Tsi1.Api/Tsi1.DataLayer/Entities/Activity.cs @@ -18,10 +18,14 @@ namespace Tsi1.DataLayer.Entities public bool IsVideoConference { get; set; } + public int? EvaluationId { get; set; } + public int CourseId { get; set; } public Course Course { get; set; } + public Evaluation Evaluation { get; set; } + public ICollection<Attendance> Attendances { get; set; } public ICollection<Grade> Grades { get; set; } diff --git a/Tsi1.Api/Tsi1.DataLayer/Entities/Evaluation.cs b/Tsi1.Api/Tsi1.DataLayer/Entities/Evaluation.cs new file mode 100644 index 0000000..aa1b5dc --- /dev/null +++ b/Tsi1.Api/Tsi1.DataLayer/Entities/Evaluation.cs @@ -0,0 +1,28 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Tsi1.DataLayer.Entities +{ + public class Evaluation + { + public Evaluation() + { + EvaluationInscriptions = new HashSet<EvaluationInscription>(); + Submissions = new HashSet<Submission>(); + } + public int Id { get; set; } + + public int EvaluationTypeId { get; set; } + + public bool IsCompleted { get; set; } + + public EvaluationType EvaluationType { get; set; } + + public ICollection<EvaluationInscription> EvaluationInscriptions { get; set; } + + public ICollection<Submission> Submissions { get; set; } + + + } +} diff --git a/Tsi1.Api/Tsi1.DataLayer/Entities/EvaluationInscription.cs b/Tsi1.Api/Tsi1.DataLayer/Entities/EvaluationInscription.cs new file mode 100644 index 0000000..05fe24a --- /dev/null +++ b/Tsi1.Api/Tsi1.DataLayer/Entities/EvaluationInscription.cs @@ -0,0 +1,21 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Tsi1.DataLayer.Entities +{ + public class EvaluationInscription + { + public int EvaluationId { get; set; } + + public int StudentId { get; set; } + + public Evaluation Evaluation { get; set; } + + public Student Student { get; set; } + + public decimal Grade { get; set; } + + public bool HasAttended { get; set; } + } +} diff --git a/Tsi1.Api/Tsi1.DataLayer/Entities/EvaluationType.cs b/Tsi1.Api/Tsi1.DataLayer/Entities/EvaluationType.cs new file mode 100644 index 0000000..5cb4e72 --- /dev/null +++ b/Tsi1.Api/Tsi1.DataLayer/Entities/EvaluationType.cs @@ -0,0 +1,13 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Tsi1.DataLayer.Entities +{ + public class EvaluationType + { + public int Id { get; set; } + + public string Name { get; set; } + } +} diff --git a/Tsi1.Api/Tsi1.DataLayer/Entities/File.cs b/Tsi1.Api/Tsi1.DataLayer/Entities/File.cs index ea3324a..96aa71c 100644 --- a/Tsi1.Api/Tsi1.DataLayer/Entities/File.cs +++ b/Tsi1.Api/Tsi1.DataLayer/Entities/File.cs @@ -10,6 +10,12 @@ namespace Tsi1.DataLayer.Entities public string Name { get; set; } public string Path { get; set; } + public bool IsSubmission { get; set; } + + public int? SubmissionId { get; set; } + + public Submission Submission { get; set; } + public SectionItem SectionItem { get; set; } } } diff --git a/Tsi1.Api/Tsi1.DataLayer/Entities/Student.cs b/Tsi1.Api/Tsi1.DataLayer/Entities/Student.cs index 866c516..cc7772d 100644 --- a/Tsi1.Api/Tsi1.DataLayer/Entities/Student.cs +++ b/Tsi1.Api/Tsi1.DataLayer/Entities/Student.cs @@ -9,7 +9,9 @@ namespace Tsi1.DataLayer.Entities public Student() { StudentCourses = new HashSet<StudentCourse>(); + EvaluationInscriptions = new HashSet<EvaluationInscription>(); Grades = new HashSet<Grade>(); + Submissions = new HashSet<Submission>(); } public int Id { get; set; } @@ -25,5 +27,9 @@ namespace Tsi1.DataLayer.Entities public ICollection<StudentCourse> StudentCourses { get; set; } public ICollection<Grade> Grades { get; set; } + + public ICollection<EvaluationInscription> EvaluationInscriptions { get; set; } + + public ICollection<Submission> Submissions { get; set; } } } diff --git a/Tsi1.Api/Tsi1.DataLayer/Entities/Submission.cs b/Tsi1.Api/Tsi1.DataLayer/Entities/Submission.cs new file mode 100644 index 0000000..add00c5 --- /dev/null +++ b/Tsi1.Api/Tsi1.DataLayer/Entities/Submission.cs @@ -0,0 +1,23 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Tsi1.DataLayer.Entities +{ + public class Submission + { + public int Id { get; set; } + + public int StudentId { get; set; } + + public int FileId { get; set; } + + public Student Student { get; set; } + + public File File { get; set; } + + public decimal Grade { get; set; } + + public bool IsCompleted { get; set; } + } +} diff --git a/Tsi1.Api/Tsi1.DataLayer/EntityConfiguration/EvaluationConfiguration.cs b/Tsi1.Api/Tsi1.DataLayer/EntityConfiguration/EvaluationConfiguration.cs new file mode 100644 index 0000000..0cfb7fe --- /dev/null +++ b/Tsi1.Api/Tsi1.DataLayer/EntityConfiguration/EvaluationConfiguration.cs @@ -0,0 +1,17 @@ +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Metadata.Builders; +using System; +using System.Collections.Generic; +using System.Text; +using Tsi1.DataLayer.Entities; + +namespace Tsi1.DataLayer.EntityConfiguration +{ + public class EvaluationConfiguration : IEntityTypeConfiguration<Evaluation> + { + public void Configure(EntityTypeBuilder<Evaluation> builder) + { + builder.HasKey(x => x.Id); + } + } +} diff --git a/Tsi1.Api/Tsi1.DataLayer/EntityConfiguration/EvaluationInscriptionConfiguration.cs b/Tsi1.Api/Tsi1.DataLayer/EntityConfiguration/EvaluationInscriptionConfiguration.cs new file mode 100644 index 0000000..652d92b --- /dev/null +++ b/Tsi1.Api/Tsi1.DataLayer/EntityConfiguration/EvaluationInscriptionConfiguration.cs @@ -0,0 +1,29 @@ +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Metadata.Builders; +using System; +using System.Collections.Generic; +using System.Text; +using Tsi1.DataLayer.Entities; + +namespace Tsi1.DataLayer.EntityConfiguration +{ + public class EvaluationInscriptionConfiguration : IEntityTypeConfiguration<EvaluationInscription> + { + public void Configure(EntityTypeBuilder<EvaluationInscription> builder) + { + builder.HasKey(x => new { x.EvaluationId, x.StudentId }); + + builder.Property(x => x.Grade) + .IsRequired() + .HasColumnType("decimal(5,2)"); + + builder.HasOne(x => x.Evaluation) + .WithMany(x => x.EvaluationInscriptions) + .HasForeignKey(x => x.EvaluationId); + + builder.HasOne(x => x.Student) + .WithMany(x => x.EvaluationInscriptions) + .HasForeignKey(x => x.StudentId); + } + } +} diff --git a/Tsi1.Api/Tsi1.DataLayer/EntityConfiguration/EvaluationTypeConfiguration.cs b/Tsi1.Api/Tsi1.DataLayer/EntityConfiguration/EvaluationTypeConfiguration.cs new file mode 100644 index 0000000..0406bf5 --- /dev/null +++ b/Tsi1.Api/Tsi1.DataLayer/EntityConfiguration/EvaluationTypeConfiguration.cs @@ -0,0 +1,24 @@ +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Metadata.Builders; +using System; +using System.Collections.Generic; +using System.Text; +using Tsi1.DataLayer.Entities; + +namespace Tsi1.DataLayer.EntityConfiguration +{ + public class EvaluationTypeConfiguration : IEntityTypeConfiguration<EvaluationType> + { + public void Configure(EntityTypeBuilder<EvaluationType> builder) + { + builder.HasKey(x => x.Id); + + builder.HasIndex(x => x.Name) + .IsUnique(); + + builder.Property(x => x.Name) + .IsRequired() + .HasColumnType("character varying(50)"); + } + } +} diff --git a/Tsi1.Api/Tsi1.DataLayer/EntityConfiguration/FileConfiguration.cs b/Tsi1.Api/Tsi1.DataLayer/EntityConfiguration/FileConfiguration.cs index ee21323..b32e463 100644 --- a/Tsi1.Api/Tsi1.DataLayer/EntityConfiguration/FileConfiguration.cs +++ b/Tsi1.Api/Tsi1.DataLayer/EntityConfiguration/FileConfiguration.cs @@ -23,6 +23,10 @@ namespace Tsi1.DataLayer.EntityConfiguration builder.HasIndex(x => x.Path) .IsUnique(); + + builder.HasOne(x => x.Submission) + .WithOne(x => x.File) + .HasForeignKey<File>(x => x.SubmissionId); } } } diff --git a/Tsi1.Api/Tsi1.DataLayer/EntityConfiguration/SubmissionConfiguration.cs b/Tsi1.Api/Tsi1.DataLayer/EntityConfiguration/SubmissionConfiguration.cs new file mode 100644 index 0000000..7a4f33e --- /dev/null +++ b/Tsi1.Api/Tsi1.DataLayer/EntityConfiguration/SubmissionConfiguration.cs @@ -0,0 +1,28 @@ +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Metadata.Builders; +using System; +using System.Collections.Generic; +using System.Text; +using Tsi1.DataLayer.Entities; + +namespace Tsi1.DataLayer.EntityConfiguration +{ + public class SubmissionConfiguration : IEntityTypeConfiguration<Submission> + { + public void Configure(EntityTypeBuilder<Submission> builder) + { + builder.HasKey(x => x.Id); + + builder.HasIndex(x => new { x.StudentId, x.FileId }) + .IsUnique(); + + builder.Property(x => x.Grade) + .IsRequired() + .HasColumnType("decimal(5,2)"); + + builder.HasOne(x => x.Student) + .WithMany(x => x.Submissions) + .HasForeignKey(x => x.StudentId); + } + } +} -- GitLab