示例#1
0
        public async Task <IHttpActionResult> GetSegmentosMercado()
        {
            try
            {
                var entities = await _repo.GetSegmentosMercado();

                return(Ok(entities));
            }
            catch (Exception e)
            {
                return(InternalServerError(e));
            }
        }