From ac5729eb52f89cb62e9fde57a42900f4b9e8bc96 Mon Sep 17 00:00:00 2001 From: esantangelo <enzo020895@gmail.com> Date: Sun, 6 Dec 2020 20:07:56 -0300 Subject: [PATCH] evaluation types --- .../Tsi1.BusinessLayer/Helpers/EvaluationTypes.cs | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Tsi1.Api/Tsi1.BusinessLayer/Helpers/EvaluationTypes.cs diff --git a/Tsi1.Api/Tsi1.BusinessLayer/Helpers/EvaluationTypes.cs b/Tsi1.Api/Tsi1.BusinessLayer/Helpers/EvaluationTypes.cs new file mode 100644 index 0000000..446a98c --- /dev/null +++ b/Tsi1.Api/Tsi1.BusinessLayer/Helpers/EvaluationTypes.cs @@ -0,0 +1,13 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Tsi1.BusinessLayer.Helpers +{ + public class EvaluationTypes + { + public const string Laboratory = nameof(Laboratory); + public const string Exam = nameof(Exam); + public const string MidTerm = nameof(MidTerm); + } +} -- GitLab