-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathgradeAPI.js
87 lines (84 loc) · 1.13 KB
/
gradeAPI.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
const GradeAPI = {
grades: [{
"category": "Pre-primary",
"options": [{
"id": 1,
"grade": "Nursery",
"fees": 50000,
"seats": 50
},
{
"id": 2,
"grade": "Jr.KG",
"fees": 65000,
"seats": 50
},
{
"id": 3,
"grade": "Sr.KG",
"fees": 65000,
"seats": 50
}
]
},
{
"category": "Primary",
"options": [{
"id": 1,
"grade": "I",
"fees": 70000,
"seats": 50
},
{
"id": 2,
"grade": "II",
"fees": 70000,
"seats": 50
},
{
"id": 3,
"grade": "III",
"fees": 70000,
"seats": 50
},
{
"id": 4,
"grade": "IV",
"fees": 75000,
"seats": 50
},
{
"id": 5,
"grade": "V",
"fees": 75000,
"seats": 50
},
]
},
{
"category": "Secondary",
"options": [{
"id": 1,
"grade": "VI",
"fees": 80000,
"seats": 50
},
{
"id": 2,
"grade": "VII",
"fees": 80000,
"seats": 50
},
{
"id": 3,
"grade": "VIII",
"fees": 85000,
"seats": 50
}
]
}
]
}
module.exports = {
GradeAPI
};