family add

This commit is contained in:
CHIEFSOFT\ameye
2023-12-16 09:24:17 -05:00
parent 8fc0015fc3
commit ac434ac590
4 changed files with 48 additions and 4 deletions
@@ -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');