-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
25 additions
and
13 deletions.
There are no files selected for viewing
5 changes: 4 additions & 1 deletion
5
projeto-gerar-horario/Core/Dtos/Configuracoes/GerarHorarioOptions.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 2 additions & 1 deletion
3
...o-gerar-horario/Core/Dtos/DiaSemanaIso.cs → ...rario/Core/Dtos/Entidades/DiaSemanaIso.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
namespace Core; | ||
namespace Core.Dtos.Entidades; | ||
|
||
|
||
public enum DiaSemanaIso | ||
{ | ||
|
3 changes: 2 additions & 1 deletion
3
projeto-gerar-horario/Core/Dtos/Diario.cs → ...rar-horario/Core/Dtos/Entidades/Diario.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
namespace Core; | ||
namespace Core.Dtos.Entidades; | ||
|
||
public class Diario | ||
{ | ||
public string Id { get; set; } | ||
|
3 changes: 2 additions & 1 deletion
3
...r-horario/Core/Dtos/DisponibilidadeDia.cs → ...Core/Dtos/Entidades/DisponibilidadeDia.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 2 additions & 1 deletion
3
projeto-gerar-horario/Core/Dtos/Intervalo.cs → ...-horario/Core/Dtos/Entidades/Intervalo.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 2 additions & 1 deletion
3
projeto-gerar-horario/Core/Dtos/Professor.cs → ...-horario/Core/Dtos/Entidades/Professor.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
namespace Core; | ||
namespace Core.Dtos.Entidades; | ||
|
||
public class Professor | ||
{ | ||
public string Id { get; set; } | ||
|
3 changes: 2 additions & 1 deletion
3
projeto-gerar-horario/Core/Dtos/Turma.cs → ...erar-horario/Core/Dtos/Entidades/Turma.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
namespace Core; | ||
namespace Core.Dtos.Entidades; | ||
|
||
public class Turma | ||
{ | ||
public string Id { get; set; } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
namespace Core; | ||
namespace Core.Dtos.HorarioGerado; | ||
|
||
public class HorarioGerado | ||
{ | ||
|
2 changes: 1 addition & 1 deletion
2
projeto-gerar-horario/Core/Dtos/HorarioGerado/HorarioGeradoAula.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
namespace Core; | ||
namespace Core.Dtos.HorarioGerado; | ||
|
||
public class HorarioGeradoAula | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
using Google.OrTools.Sat; | ||
|
||
namespace Core; | ||
namespace Core.Gerador; | ||
|
||
public class PropostaAula( | ||
int diaSemanaIso, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters