Ejemplo n.º 1
0
        public ActionResult GetInterestsByType(int interestTypeId)
        {
            var interestsByType = _interestRepository.GetInterestsByType(interestTypeId);

            return(Ok(interestsByType));
        }