reglanegociom3
Version:
51 lines (50 loc) • 2.97 kB
TypeScript
import { Http } from '@angular/http';
import { HttpClient } from '@angular/common/http';
import 'rxjs/add/operator/map';
import { Observable } from 'rxjs';
import { Response } from '@angular/http/src/static_response';
export declare class PostServiceM3 {
private http;
private httpClient;
servidor: string;
servidorPersonas: string;
servidorGenerales: string;
servidorM3: string;
servidorDocumentos: string;
servidorContable: string;
servidorPrestamo: string;
WebBase: string;
constructor(http: Http, httpClient: HttpClient);
getURLServer(): string;
getURLServerDocs(): string;
httpGet(urlGet: string, iServidor: string): Observable<any>;
httpGetWithBody(urlGet: string, iServidor: string, parametros: any): Observable<Object>;
getPrestamo(urlGet: string): Observable<any>;
getWithBodyPrestamo(urlGet: string, params: any): Observable<Object>;
getWithBodyM3(urlGet: string, params: any): Observable<Object>;
getWithBodyPersonas(urlGet: string, params: any): Observable<Object>;
getWithBodyGenerales(urlGet: string, params: any): Observable<Object>;
getWithBodyDocumento(urlGet: string, params: any): Observable<Object>;
getPosts(urlGet: string): Observable<any>;
getPersonas(urlGet: string): Observable<any>;
getGenerales(urlGet: string): Observable<any>;
getM3(urlGet: string): Observable<any>;
getDocumentos(urlGet: string): Observable<any>;
getContable(urlGet: string): Observable<any>;
getPostsWithOutJson(urlGet: string): Observable<Response>;
postServiceHttp(urlGet: string, params: any): Observable<string>;
postServiceResponseHttp(urlGet: string, params: any): Observable<any>;
postServiceResponseHttpCallService(urlGet: string, params: any, iServidor: any): Observable<any>;
postServiceResponseHttpPrestamos(urlGet: string, params: any): Observable<any>;
postServiceHttpOptionsCallService(urlGet: string, params: any, headers: any, iServidor: any): Observable<Response>;
postServiceHttpOptions(urlGet: string, params: any, headers: any): Observable<Response>;
postServiceHttpOptionsM3(urlGet: string, params: any, headers: any): Observable<Response>;
postServiceHttpOptionsDocs(urlGet: string, params: any, headers: any): Observable<Response>;
postServiceHttpResFullCallService(urlGet: string, params: any, iServidor: any): Observable<Response>;
postServiceHttpResFull(urlGet: string, params: any): Observable<Response>;
postServiceHttpResFullPersonas(urlGet: string, params: any): Observable<Response>;
postServiceHttpResFullM3(urlGet: string, params: any): Observable<Response>;
postServiceHttpResFullGenerales(urlGet: string, params: any): Observable<Response>;
postServiceHttpResFullPrestamos(urlGet: string, params: any): Observable<Response>;
postServiceWebApi(urlGet: string, params: any, iServidor: any): Observable<Response>;
}