Esempio n. 1
0
 public HttpResponseMessage Putt(ResumeContactInfo inputInfo)
 {
     return(ReturnObjectService.BuildContentResponseMessage(Service.PutContactInfo(inputInfo)));
 }
Esempio n. 2
0
 public HttpResponseMessage Delete(int id)
 {
     return(ReturnObjectService.BuildContentResponseMessage(Service.DeleteContactInfo(id)));
 }
Esempio n. 3
0
 public HttpResponseMessage Delete(int id)
 {
     return(ReturnObjectService.BuildContentResponseMessage(Service.DeleteResumeSection(id)));
 }
Esempio n. 4
0
 public HttpResponseMessage Get(int resumeId)
 {
     return(ReturnObjectService.BuildContentResponseMessage(Service.GetContactInfo(resumeId)));
 }
Esempio n. 5
0
 public HttpResponseMessage Get(int resumeId, int id)
 {
     return(ReturnObjectService.BuildContentResponseMessage(Service.GetResumeSection(id)));
 }
Esempio n. 6
0
 public HttpResponseMessage Put(ResumeSection inputSection)
 {
     return(ReturnObjectService.BuildContentResponseMessage(Service.PutResumeSection(inputSection)));
 }
Esempio n. 7
0
 public HttpResponseMessage Put(Resume inputResume)
 {
     return(ReturnObjectService.BuildContentResponseMessage(Service.PutResume(inputResume)));
 }
Esempio n. 8
0
 public HttpResponseMessage Post(ResumeTag inputTag)
 {
     return(ReturnObjectService.BuildContentResponseMessage(Service.PostResumeTag(inputTag)));
 }
Esempio n. 9
0
 public HttpResponseMessage Get()
 {
     return(ReturnObjectService.BuildContentResponseMessage(Service.GetResumeTags()));
 }
Esempio n. 10
0
 public HttpResponseMessage Put(ResumeEntry inputEntry)
 {
     return(ReturnObjectService.BuildContentResponseMessage(Service.PutResumeEntry(inputEntry)));
 }
Esempio n. 11
0
 public HttpResponseMessage Get(int sectionId)
 {
     return(ReturnObjectService.BuildContentResponseMessage(Service.GetResumeEntries(sectionId)));
 }