Exemplo n.º 1
0
 public StudentEntity Put(Guid StudentId, [FromBody] StudentEntity studentEntity)
 {
     return(studentService.Update(UserEntity, StudentId, studentEntity));
 }
Exemplo n.º 2
0
 public StudentEntity Create([FromBody] StudentEntity studentEntity)
 {
     return(studentService.Create(studentEntity));
 }