From c9c663970f2cd6ed08f588755743dd19d5bd52fa Mon Sep 17 00:00:00 2001
From: esantangelo <enzo020895@gmail.com>
Date: Mon, 7 Dec 2020 21:13:30 -0300
Subject: [PATCH] dtos and helpers

---
 .../Dtos/ActivityCreateDto.cs                 |  2 ++
 .../Dtos/ActivityModifyDto.cs                 |  2 ++
 .../Dtos/EvaluationCreateDto.cs               | 13 ++++++++++++
 .../Dtos/EvaluationDetailDto.cs               | 16 +++++++++++++++
 .../Dtos/EvaluationInscriptionDto.cs          | 17 ++++++++++++++++
 .../Dtos/EvaluationInscriptionModifyDto.cs    | 15 ++++++++++++++
 .../Dtos/EvaluationModifyDto.cs               | 15 ++++++++++++++
 .../Dtos/EvaluationTypeDto.cs                 | 13 ++++++++++++
 .../Dtos/MyEvaluationInscriptionDto.cs        | 20 +++++++++++++++++++
 .../Helpers/ErrorMessages.cs                  | 14 +++++++++++++
 .../Helpers/MappingProfile.cs                 | 12 +++++++++--
 11 files changed, 137 insertions(+), 2 deletions(-)
 create mode 100644 Tsi1.Api/Tsi1.BusinessLayer/Dtos/EvaluationCreateDto.cs
 create mode 100644 Tsi1.Api/Tsi1.BusinessLayer/Dtos/EvaluationDetailDto.cs
 create mode 100644 Tsi1.Api/Tsi1.BusinessLayer/Dtos/EvaluationInscriptionDto.cs
 create mode 100644 Tsi1.Api/Tsi1.BusinessLayer/Dtos/EvaluationInscriptionModifyDto.cs
 create mode 100644 Tsi1.Api/Tsi1.BusinessLayer/Dtos/EvaluationModifyDto.cs
 create mode 100644 Tsi1.Api/Tsi1.BusinessLayer/Dtos/EvaluationTypeDto.cs
 create mode 100644 Tsi1.Api/Tsi1.BusinessLayer/Dtos/MyEvaluationInscriptionDto.cs

diff --git a/Tsi1.Api/Tsi1.BusinessLayer/Dtos/ActivityCreateDto.cs b/Tsi1.Api/Tsi1.BusinessLayer/Dtos/ActivityCreateDto.cs
index c320b46..c6d0437 100644
--- a/Tsi1.Api/Tsi1.BusinessLayer/Dtos/ActivityCreateDto.cs
+++ b/Tsi1.Api/Tsi1.BusinessLayer/Dtos/ActivityCreateDto.cs
@@ -11,5 +11,7 @@ namespace Tsi1.BusinessLayer.Dtos
         public bool IsVideoConference { get; set; }
 
         public int CourseId { get; set; }
+
+        public EvaluationCreateDto Evaluation { get; set; }
     }
 }
diff --git a/Tsi1.Api/Tsi1.BusinessLayer/Dtos/ActivityModifyDto.cs b/Tsi1.Api/Tsi1.BusinessLayer/Dtos/ActivityModifyDto.cs
index 084adde..aa92abe 100644
--- a/Tsi1.Api/Tsi1.BusinessLayer/Dtos/ActivityModifyDto.cs
+++ b/Tsi1.Api/Tsi1.BusinessLayer/Dtos/ActivityModifyDto.cs
@@ -9,5 +9,7 @@ namespace Tsi1.BusinessLayer.Dtos
         public string Name { get; set; }
 
         public bool IsVideoConference { get; set; }
+
+        public EvaluationModifyDto Evaluation { get; set; }
     }
 }
diff --git a/Tsi1.Api/Tsi1.BusinessLayer/Dtos/EvaluationCreateDto.cs b/Tsi1.Api/Tsi1.BusinessLayer/Dtos/EvaluationCreateDto.cs
new file mode 100644
index 0000000..a2f6abc
--- /dev/null
+++ b/Tsi1.Api/Tsi1.BusinessLayer/Dtos/EvaluationCreateDto.cs
@@ -0,0 +1,13 @@
+using System;
+using System.Collections.Generic;
+using System.Text;
+
+namespace Tsi1.BusinessLayer.Dtos
+{
+    public class EvaluationCreateDto
+    {
+        public int EvaluationTypeId { get; set; }
+
+        public bool IsCompleted { get; set; }
+    }
+}
diff --git a/Tsi1.Api/Tsi1.BusinessLayer/Dtos/EvaluationDetailDto.cs b/Tsi1.Api/Tsi1.BusinessLayer/Dtos/EvaluationDetailDto.cs
new file mode 100644
index 0000000..963bf1a
--- /dev/null
+++ b/Tsi1.Api/Tsi1.BusinessLayer/Dtos/EvaluationDetailDto.cs
@@ -0,0 +1,16 @@
+using System;
+using System.Collections.Generic;
+using System.Text;
+
+namespace Tsi1.BusinessLayer.Dtos
+{
+    public class EvaluationDetailDto
+    {
+        public int Id { get; set; }
+
+        public int EvaluationTypeId { get; set; }
+
+        public bool IsCompleted { get; set; }
+
+    }
+}
diff --git a/Tsi1.Api/Tsi1.BusinessLayer/Dtos/EvaluationInscriptionDto.cs b/Tsi1.Api/Tsi1.BusinessLayer/Dtos/EvaluationInscriptionDto.cs
new file mode 100644
index 0000000..4ce3191
--- /dev/null
+++ b/Tsi1.Api/Tsi1.BusinessLayer/Dtos/EvaluationInscriptionDto.cs
@@ -0,0 +1,17 @@
+using System;
+using System.Collections.Generic;
+using System.Text;
+
+namespace Tsi1.BusinessLayer.Dtos
+{
+    public class EvaluationInscriptionDto
+    {
+        public int EvaluationId { get; set; }
+
+        public int StudentId { get; set; }
+
+        public decimal Grade { get; set; }
+
+        public bool HasAttended { get; set; }
+    }
+}
diff --git a/Tsi1.Api/Tsi1.BusinessLayer/Dtos/EvaluationInscriptionModifyDto.cs b/Tsi1.Api/Tsi1.BusinessLayer/Dtos/EvaluationInscriptionModifyDto.cs
new file mode 100644
index 0000000..1792396
--- /dev/null
+++ b/Tsi1.Api/Tsi1.BusinessLayer/Dtos/EvaluationInscriptionModifyDto.cs
@@ -0,0 +1,15 @@
+using System;
+using System.Collections.Generic;
+using System.Text;
+
+namespace Tsi1.BusinessLayer.Dtos
+{
+    public class EvaluationInscriptionModifyDto
+    {
+        public int EvaluationId { get; set; }
+
+        public int StudentId { get; set; }
+
+        public decimal Grade { get; set; }
+    }
+}
diff --git a/Tsi1.Api/Tsi1.BusinessLayer/Dtos/EvaluationModifyDto.cs b/Tsi1.Api/Tsi1.BusinessLayer/Dtos/EvaluationModifyDto.cs
new file mode 100644
index 0000000..9ebaf99
--- /dev/null
+++ b/Tsi1.Api/Tsi1.BusinessLayer/Dtos/EvaluationModifyDto.cs
@@ -0,0 +1,15 @@
+using System;
+using System.Collections.Generic;
+using System.Text;
+
+namespace Tsi1.BusinessLayer.Dtos
+{
+    public class EvaluationModifyDto
+    {
+        public int Id { get; set; }
+
+        public int EvaluationTypeId { get; set; }
+
+        public bool IsCompleted { get; set; }
+    }
+}
diff --git a/Tsi1.Api/Tsi1.BusinessLayer/Dtos/EvaluationTypeDto.cs b/Tsi1.Api/Tsi1.BusinessLayer/Dtos/EvaluationTypeDto.cs
new file mode 100644
index 0000000..2f678c3
--- /dev/null
+++ b/Tsi1.Api/Tsi1.BusinessLayer/Dtos/EvaluationTypeDto.cs
@@ -0,0 +1,13 @@
+using System;
+using System.Collections.Generic;
+using System.Text;
+
+namespace Tsi1.BusinessLayer.Dtos
+{
+    public class EvaluationTypeDto
+    {
+        public int Id { get; set; }
+
+        public string Name { get; set; }
+    }
+}
diff --git a/Tsi1.Api/Tsi1.BusinessLayer/Dtos/MyEvaluationInscriptionDto.cs b/Tsi1.Api/Tsi1.BusinessLayer/Dtos/MyEvaluationInscriptionDto.cs
new file mode 100644
index 0000000..d4997da
--- /dev/null
+++ b/Tsi1.Api/Tsi1.BusinessLayer/Dtos/MyEvaluationInscriptionDto.cs
@@ -0,0 +1,20 @@
+using System;
+using System.Collections.Generic;
+using System.Text;
+
+namespace Tsi1.BusinessLayer.Dtos
+{
+    public class MyEvaluationInscriptionDto
+    {
+        public string ActivityName { get; set; }
+
+        public int EvaluationTypeId { get; set; }
+
+        public string EvaluationType { get; set; }
+
+        public decimal Grade { get; set; }
+
+        public bool HasAttended { get; set; }
+
+    }
+}
diff --git a/Tsi1.Api/Tsi1.BusinessLayer/Helpers/ErrorMessages.cs b/Tsi1.Api/Tsi1.BusinessLayer/Helpers/ErrorMessages.cs
index 2b12422..6812a72 100644
--- a/Tsi1.Api/Tsi1.BusinessLayer/Helpers/ErrorMessages.cs
+++ b/Tsi1.Api/Tsi1.BusinessLayer/Helpers/ErrorMessages.cs
@@ -69,5 +69,19 @@ namespace Tsi1.BusinessLayer.Helpers
         public const string ActivityDoesNotExist = "La actividad con id '{0}' no existe";
 
         public const string GradeDoesNotExist = "La nota para la actividad con id '{0}' y usuario con id '{0}' no existe";
+
+
+        public const string EvaluationTypeDoesNotExist = "El tipo de evaluación con id '{0}' no existe";
+        public const string EvaluationDoesNotExist = "La evaluación con id '{0}' no existe";
+        public const string EvaluationIsCompleted = "La evaluación con id '{0}' ha finalizado";
+        public const string EvaluationInscriptionAlreadyExists = "El estudiante con id '{0}' ya se inscribió a la evaluación con id '{1}'";
+        public const string EvaluationInscriptionDoesNotExists = "El estudiante con id '{0}' no esta inscripto en la evaluación con id '{1}'";
+        public const string EvaluationInscriptionHasAttended = "El estudiante con id '{0}' ya realizó la evaluación con id '{1}'";
+        public const string SubmissionDoesNotExists = "No existe ninguna tarea para el estudiante con id '{0}' en la evaluación con id '{1}'";
+        public const string SubmissionAlreadyExists = "Ya existe una tarea para el estudiante con id '{0}' en la evaluación con id '{1}'";
+        public const string InavalidUserSubmission = "La tarea con id '{0}' no pertenece al estudiante con id '{1}'";
+
+        public const string VideoConferenceIsNotEvaluation = "Una video conferencia no es una evaluación";
+
     }
 }
diff --git a/Tsi1.Api/Tsi1.BusinessLayer/Helpers/MappingProfile.cs b/Tsi1.Api/Tsi1.BusinessLayer/Helpers/MappingProfile.cs
index f0da4ed..11a8b22 100644
--- a/Tsi1.Api/Tsi1.BusinessLayer/Helpers/MappingProfile.cs
+++ b/Tsi1.Api/Tsi1.BusinessLayer/Helpers/MappingProfile.cs
@@ -57,7 +57,11 @@ namespace Tsi1.BusinessLayer.Helpers
             CreateMap<Activity, ActivityCreateDto>();
             CreateMap<Activity, ActivityModifyDto>();
             CreateMap<Activity, ActivityDto>();
-            CreateMap<Grade, GradeDto>();
+            CreateMap<EvaluationType, EvaluationTypeDto>();
+            CreateMap<Evaluation, EvaluationCreateDto>();
+            CreateMap<Evaluation, EvaluationModifyDto>();
+            CreateMap<Evaluation, EvaluationDetailDto>();
+            CreateMap<EvaluationInscription, EvaluationInscriptionDto>();
 
             CreateMap<ForumCreateDto, Forum>();
             CreateMap<ForumPreviewDto, Forum>();
@@ -104,7 +108,11 @@ namespace Tsi1.BusinessLayer.Helpers
             CreateMap<ActivityCreateDto, Activity>();
             CreateMap<ActivityModifyDto, Activity>();
             CreateMap<ActivityDto, Activity>();
-            CreateMap<GradeDto, Grade>();
+            CreateMap<EvaluationTypeDto, EvaluationType>();
+            CreateMap<EvaluationCreateDto, Evaluation>();
+            CreateMap<EvaluationModifyDto, Evaluation>().ForMember(x => x.Id, opt => opt.Ignore());
+            CreateMap<EvaluationDetailDto, Evaluation>();
+            CreateMap<EvaluationInscriptionDto, EvaluationInscription>();
         }
     }
 }
-- 
GitLab