コード例 #1
0
        public HttpResponseMessage sp_changePassword_Result(int IDUser, string newPassword)
        {
            var objdemoentity = new EcoPropiedadEntities();

            List <sp_changePassword_Result> obtorercord = objdemoentity.sp_changePassword(IDUser, newPassword).ToList();

            return(Request.CreateResponse(HttpStatusCode.OK, obtorercord.ToList()));
        }