Example #1
0
 private static bool IdExiste(int id)
 {
     if (!repositorio.IdExiste(id))
     {
         Console.WriteLine($"Serie com ID {id} não encontrada!\n");
         return(false);
     }
     return(true);
 }