Advertisement
ricksantiago

Untitled

May 23rd, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. import { Http } from '@angular/http';
  2. import { Injectable } from '@angular/core';
  3. import { AgendaReuniao } from '../../modelos/agendarReuniao';
  4. import 'rxjs/add/operator/map';
  5.  
  6.  
  7. @Injectable()
  8. export class AgendaReuniaoServiceProvider {
  9.  
  10.   private urlBaseApiPath = "http://177.126.81.87:8089/intranet/agendaReuniao/listaReunioes.json"
  11.  
  12.   constructor(public _http: Http) {}
  13.  
  14.   listaAgendamentos(){
  15.     return this._http.get(this.urlBaseApiPath);
  16.   }
  17.  
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement