mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-21 13:55:51 +00:00
20 lines
483 B
TypeScript
20 lines
483 B
TypeScript
|
|
import { Injectable } from '@angular/core';
|
||
|
|
import { InAppBrowser } from '@ionic-native/in-app-browser/ngx';
|
||
|
|
import { ProcessDocumentService } from './process-document.service';
|
||
|
|
|
||
|
|
@Injectable({
|
||
|
|
providedIn: 'root'
|
||
|
|
})
|
||
|
|
export class ExpedientesService {
|
||
|
|
|
||
|
|
constructor(
|
||
|
|
private iab: InAppBrowser,
|
||
|
|
private processDocumentService: ProcessDocumentService
|
||
|
|
) { }
|
||
|
|
|
||
|
|
viewDocument({DocId, ApplicationId}) {
|
||
|
|
this.processDocumentService.viewDocument({DocId, ApplicationId})
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|