import { Component, OnInit } from '@angular/core';
import { UserdetailshistoryService } from '../../services';
@Component({
selector: 'my-userdetailshistory',
templateUrl: './userdetails-history.component.html',
})
export class UserdetailshistoryComponent implements OnInit{
userdetailshistorys: Userdetailshistory[];
constructor(private userdetailshistoryService: UserdetailshistoryService) {}
ngOnInit() {
this.userdetailshistoryService.getUserdetailsHistory().then(userdetailshistorys => this.userdetailshistorys = userdetailshistorys);
}
}