Beispiel #1
0
 public HttpResponseMessage Put(WorkingDTO working)
 {
     try
     {
         return(ResponseWrapper.SuccessResponse(repository.EditWorking(working)));
     }
     catch (Exception e)
     {
         return(ResponseWrapper.ExceptionResponse(e));
     }
 }