Example #1
0
 // PUT: api/Project/5
 public void Put(int id, Project value)
 {
     value.ProjId = id;
     ProjtRepository.Edit(value);
 }