コード例 #1
0
ファイル: StudentController.cs プロジェクト: linhlpv/IMS
 public StudentEntity Put(Guid StudentId, [FromBody] StudentEntity studentEntity)
 {
     return(studentService.Update(UserEntity, StudentId, studentEntity));
 }
コード例 #2
0
ファイル: StudentController.cs プロジェクト: linhlpv/IMS
 public StudentEntity Create([FromBody] StudentEntity studentEntity)
 {
     return(studentService.Create(studentEntity));
 }