コード例 #1
0
ファイル: AutorAppService.cs プロジェクト: juninmd/Biblioteca
 public HttpResponseMessage Post(object autor)
 {
     return(BaseAppService.Post("http://localhost:5002/api/Autor/Post", autor));
 }
コード例 #2
0
ファイル: LivroAppService.cs プロジェクト: juninmd/Biblioteca
 public HttpResponseMessage Post(LivroDto livro)
 {
     return(BaseAppService.Post("http://localhost:5002/api/Livro/Post", livro));
 }
コード例 #3
0
 public HttpResponseMessage Post(EditoraDto editora)
 {
     return(BaseAppService.Post("http://localhost:5002/api/Editora/Post", editora));
 }