Esempio n. 1
0
        public void removeNews()
        {
            CentralNoticiasService service = new CentralNoticiasService();

            Noticia noticia = new Noticia();

            noticia.noticia     = "Teste de notícia";
            noticia.titulo      = "Teste de título";
            noticia.informativo = "Teste de informativo";
            noticia.data        = "01/01/2018";
            noticia.autor       = "Teste de autor";

            service.addNews(noticia);
        }