public ActionResult <SentOutLeadDto> GetSentOutLeadById(int id) { var sentOutLeadFromRepo = _leadsRepo.GetSentOutLeadById(id); if (sentOutLeadFromRepo != null) { return(Ok(_mapper.Map <SentOutLeadDto>(sentOutLeadFromRepo))); } return(NotFound()); }