parent
976c4f0956
commit
ac709ed7fc
@ -0,0 +1,7 @@ |
|||||||
|
export interface Referencement { |
||||||
|
id: number; |
||||||
|
startingDate : Date; |
||||||
|
endingDate? : Date; |
||||||
|
referredId : number; |
||||||
|
referrerId : number; |
||||||
|
} |
@ -0,0 +1 @@ |
|||||||
|
<p>referencement works!</p> |
@ -0,0 +1,15 @@ |
|||||||
|
import { Component, OnInit } from '@angular/core'; |
||||||
|
|
||||||
|
@Component({ |
||||||
|
selector: 'app-referencement', |
||||||
|
templateUrl: './referencement.component.html', |
||||||
|
styleUrls: ['./referencement.component.scss'] |
||||||
|
}) |
||||||
|
export class ReferencementComponent implements OnInit { |
||||||
|
|
||||||
|
constructor() { } |
||||||
|
|
||||||
|
ngOnInit(): void { |
||||||
|
} |
||||||
|
|
||||||
|
} |
Loading…
Reference in new issue