// iget all table data i need just the one how insert the order not all users order
this.fetchRamassage()
let employeesRes = this.ramassageService.getRamassageList()
employeesRes.snapshotChanges().subscribe(res =>{
this.employees=[]
res.forEach(item=>{
let a = item.payload.toJSON()
a['$key'] = item.key
this.employees.push(a as Ramassage)
})
})
}
fetchRamassage(){
this.ramassageService.getRamassageList().valueChanges().subscribe(res => {
console.log(res)
} )
}