Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
T
topic1-63
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Wichit Sombat
topic1-63
Commits
dcda0488
Unverified
Commit
dcda0488
authored
4 years ago
by
Wichit Sombat
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add mock folder and models folder
parent
e591cd7a
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
0 deletions
+13
-0
mock-students.ts
22-July-2020/topic1/src/app/mock/mock-students.ts
+8
-0
student.ts
22-July-2020/topic1/src/app/models/student.ts
+5
-0
No files found.
22-July-2020/topic1/src/app/mock/mock-students.ts
0 → 100644
View file @
dcda0488
import
{
Student
}
from
'../models/student'
;
export
const
STUDENTS
:
Student
[]
=
[
{
id
:
60111111
,
name
:
'Tom Hank'
,
email
:
'tom@gmail.com'
},
{
id
:
60111112
,
name
:
'Jack Daniel'
,
email
:
'jack@gmail.com'
},
{
id
:
60111113
,
name
:
'Tommy Lee Jones'
,
email
:
'tjones@gmail.com'
},
{
id
:
60111114
,
name
:
'Jack Dawson'
,
email
:
'jdawson@gmail.com'
},
];
This diff is collapsed.
Click to expand it.
22-July-2020/topic1/src/app/models/student.ts
0 → 100644
View file @
dcda0488
export
interface
Student
{
id
:
number
;
name
:
string
;
email
:
string
;
}
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment