예제 #1
0
 public HttpResponseMessage Excluir(long id)
 {
     try
     {
         var social = new Social();
         return(Request.CreateResponse(HttpStatusCode.OK, social.ExcluirUsuario(id)));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }