public IActionResult GetDispDetailsForDeliver(int projectId) { try { var response = _receiveService.GetDispDetailsForDeliver(projectId); return(Ok(response)); } catch (Exception e) { Util.LogError(e); return(StatusCode(StatusCodes.Status500InternalServerError, new ErrorClass() { code = StatusCodes.Status500InternalServerError.ToString(), message = "Something went wrong" })); } }