Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. import {Client} from '../../models/client.model';
  2. import {Adress} from '../../models/adress.model';
  3. // other things
  4. this.estimate = new Estimate('', new Client('', new Adress('', '', '', ''), '', '', '', '', ''), '', '', '', '');
  5.  
  6. import {Adress} from './adress.model';
  7. export class Client {
  8. constructor(
  9. public adress: Adress,
  10. // other properties
  11. ) {
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement