private void handleUpdate(UpdateLocuriResponse response) { try { client.updateNrLocuri(response.UpdateDto); } catch (ServicesException e) { Console.WriteLine(e.StackTrace); } }
public void updateNrLocuri(object updateDTO) { UpdateLocuriResponse updateResponse = new UpdateLocuriResponse((UpdateDTO)updateDTO); Console.WriteLine("update..."); try { sendResponse(updateResponse); } catch (Exception e) { Console.WriteLine(e.StackTrace); } }