public IActionResult Put([FromBody] AddComment param)
 {
     if (param == null)
     {
         return(BadRequest("Peer is null."));
     }
     _dataRepository.AddComment(param.EmployeeId, param.ReviewId, param.Comment);
     return(Ok(new { Success = true }));
 }