Commit f7a281e6 by chamath

Updated with custom save service.

parent 712c1575
import { Injectable } from '@angular/core';
import { EnumService } from '../../../oneit/services/enum.service';
import { Observable, Subject } from 'rxjs';
import { EnumService } from '../../../oneit/services/enum.service';
import { SaveService } from '../../../oneit/services/save.service';
import { SearchService } from '../../../oneit/services/search.service';
import { UtilsService } from '../../../oneit/services/utils.service';
import { SaveService } from '../../../oneit/services/save.service';
import { SERVICES } from '../config/constants';
import { CareerProfileModel } from '../models/career-profile.model';
......@@ -78,7 +78,7 @@ export class PersonalDetailsService {
}
saveProfile(createdObjs, updatedObjs, deletedObjs): Observable<any> {
return this.svs.saveObjectsWithDefaultSvc(createdObjs, updatedObjs, deletedObjs, true);
return this.svs.saveObjects('svc/SavePersonalDetails',createdObjs, updatedObjs, deletedObjs, true);
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment