Exemplo n.º 1
0
 public ResponseMessageWrap <int> Update([FromBody] CoursePlanLecturer coursePlanLecturer)
 {
     return(new ResponseMessageWrap <int>
     {
         Body = CoursePlanLecturerService.Update(coursePlanLecturer)
     });
 }
Exemplo n.º 2
0
 public int Update(CoursePlanLecturer coursePlanLecturer)
 {
     return(CoursePlanLecturerRepository.Update(coursePlanLecturer));
 }
Exemplo n.º 3
0
 public int Insert(CoursePlanLecturer coursePlanLecturer)
 {
     return(CoursePlanLecturerRepository.Insert(coursePlanLecturer));
 }