Пример #1
0
 // GET: api/Staff/5
 /// <summary>
 /// Get single staff by the id
 /// </summary>
 /// <param name="id"></param>
 /// <returns>StaffModel</returns>
 public StaffModel Get(int id)
 {
     return(_staffRepository.GetSingleStaff(id));
 }