Ejemplo n.º 1
0
        public ActionResult <SentOutLeadDto> GetSentOutLeadById(int id)
        {
            var sentOutLeadFromRepo = _leadsRepo.GetSentOutLeadById(id);

            if (sentOutLeadFromRepo != null)
            {
                return(Ok(_mapper.Map <SentOutLeadDto>(sentOutLeadFromRepo)));
            }
            return(NotFound());
        }