示例#1
0
        public IHttpActionResult GetMortgageType()
        {
            var result = _repository.GetMortgageType();

            if (result == null)
            {
                return(NotFound());
            }

            return(Ok(result));
        }