Skip to content

Commit

Permalink
fix: Core: Main: cast int DiaSemanaIso
Browse files Browse the repository at this point in the history
  • Loading branch information
guesant committed Mar 20, 2024
1 parent f312329 commit f9b6f79
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions projeto-gerar-horario/Core/Main.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ public bool Retorno()

var gerarHorarioOptions = new GerarHorarioOptions
{
DiaSemanaInicio = DiaSemanaIso.SEGUNDA,
DiaSemanaFim = DiaSemanaIso.SABADO
DiaSemanaInicio = (int)DiaSemanaIso.SEGUNDA,
DiaSemanaFim = (int)DiaSemanaIso.SABADO
};

// ====================================================
Expand Down

0 comments on commit f9b6f79

Please sign in to comment.