3cd725847f869957f53f7117013b07355b0b7e5f
[portal/sdk.git] /
1 import { Injectable } from '@angular/core';
2 import { HttpClient, HttpHeaders } from '@angular/common/http';
3 import { Observable } from 'rxjs';
4 import { environment } from '../../../../../../../environments/environment';
5
6 @Injectable({
7   providedIn: 'root'
8 })
9 export class DashboardReportGridService {
10
11   constructor(private _http : HttpClient) { }
12
13   getReportList() : Observable<any>
14   {
15     return this._http.get(environment.baseUrl + "raptor.htm?action=report.search.execute&r_page=0");
16   }
17 }