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