Guest User

Untitled

a guest
Dec 24th, 2018
533
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. import { Component, OnInit } from '@angular/core';
  2. import {UserInfoModel} from '../models/userInfo'
  3.  
  4. @Component({
  5. selector: 'display-user-data',
  6. templateUrl: './display-user-data.component.html',
  7. styleUrls: ['./display-user-data.component.css']
  8. })
  9.  
  10. export class DisplayUserDataComponent implements OnInit {
  11.  
  12. user: UserInfoModel = new UserInfoModel({guid: "D21ds12x",
  13. customerUid: "cust2dsa12dsa",
  14. first_name: "John",
  15. last_name: "Doe",
  16. email: "email@email.com",
  17. zipcode: 10283,
  18. password: "Idasn2x2#"});
  19.  
  20. constructor() { }
  21.  
  22. ngOnInit()
  23. {
  24.  
  25. }
  26.  
  27. }
Add Comment
Please, Sign In to add comment