コード例 #1
0
 public ResponseMessageWrap <int> Update([FromBody] YearSpecialty yearSpecialty)
 {
     return(new ResponseMessageWrap <int>
     {
         Body = YearSpecialtyService.Update(yearSpecialty)
     });
 }
コード例 #2
0
 public int Update(YearSpecialty yearSpecialty)
 {
     return(YearSpecialtyRepository.Update(yearSpecialty));
 }
コード例 #3
0
 public int Insert(YearSpecialty yearSpecialty)
 {
     return(YearSpecialtyRepository.Insert(yearSpecialty));
 }