comprobantes.service.ts 367 Bytes
import { Injectable } from '@angular/core';
import { HttpClient } from '@angular/common/http';
import { AppSetings } from '../../etc/AppSetings';

@Injectable()
export class ComprobanteService {

  constructor(private http: HttpClient) {}

  saveComprobantes(comprobante: object) {
    return this.http.post(AppSetings.END_POINT + '/comprobante', comprobante);
  }
}