family add
This commit is contained in:
@@ -83,6 +83,20 @@ export class SessionDataProviderService {
|
||||
|
||||
session_contructed:boolean = false;
|
||||
|
||||
getMonths(){
|
||||
return ["January","February","March","April","May","June","July",
|
||||
"August","September","October","November","December"];
|
||||
}
|
||||
getChildAddYears(){
|
||||
var currY = new Date().getFullYear();
|
||||
var arrY = [];
|
||||
|
||||
for(var i=4; i<=18; i++) {
|
||||
arrY.push(currY-i);
|
||||
}
|
||||
|
||||
return arrY;
|
||||
}
|
||||
|
||||
ConstructGlobalSessionData(loginResult: any) {
|
||||
console.log('Hello ConstructGlobalSessionData Provider');
|
||||
|
||||
Reference in New Issue
Block a user