public async Task Post([FromBody] Student value)
 {
     await _repository.Insert(value);
 }