Example #1
0
 public HttpResponseMessage Put(AutorDto autor)
 {
     return(BaseAppService.Put("http://localhost:5002/api/Autor/Put", autor, autor.idAutor));
 }
Example #2
0
 public HttpResponseMessage Put(LivroDto livro)
 {
     return(BaseAppService.Put("http://localhost:5002/Livro/Put", livro, livro.idLivro));
 }
Example #3
0
 public HttpResponseMessage Put(EditoraDto editora)
 {
     return(BaseAppService.Put("http://localhost:5002/api/Editora", editora, editora.idEditora));
 }