Advertisement
Guest User

Untitled

a guest
Jul 19th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. listarPontoParam(options: Ponto) {
  2. return this.afs.firestore.collection('ponto')
  3. .where('nome', '==', options.nome)
  4. .where('entrada', '>=', options.entrada)
  5. .where('saida', '<=', options.saida)
  6. .get();
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement