public IHttpActionResult PutProblem(int id, int problemid, [FromBody] Problem problem)
 {
     try
     {
         ProblemManager manager = new ProblemManager();
         Problem        temp    = manager.Obtener(problemid);
         if (temp.customer.id == id)
         {
             problem.customer.id = id;
             Problem result = manager.Editar(problemid, problem);
             if (result != null)
             {
                 return(Ok());
             }
             else
             {
                 return(BadRequest());
             }
         }
         else
         {
             return(NotFound());
         }
     }
     catch (Exception e)
     {
         return(NotFound());
     }
 }