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