Example #1
0
 public Famille Put([FromBody] Famille ft)
 {
     if (ModelState.IsValid)
     {
         _FamilleService.Update(ft);
     }
     return(ft);
 }