Example #1
0
        public HttpResponseMessage Get()
        {
            Ubicacion ubicacion = new Ubicacion();

            HttpResponseMessage response = Request.CreateResponse <List <Models.Ubicacion> >(HttpStatusCode.Created, ubicacion.Select_Todo_Ubicacion());

            return(response);
        }