public List <Serie> Listar()
 {
     using (var ctx = new EntretenimentoDBContext())
     {
         try
         {
             return(ctx.Series.ToList());
         }
         catch (Exception)
         {
             return(null);
         }
     }
 }
        public bool Inserir(Serie item)
        {
            bool retorno = true;

            using (var ctx = new EntretenimentoDBContext())
            {
                try
                {
                    ctx.Series.Add(item);
                    ctx.SaveChanges();
                }
                catch (Exception e)
                {
                    Console.WriteLine("Erro na operação: {0}", e.Message);
                    retorno = false;
                }
            }

            return(retorno);
        }