public void Update(UserProfileEditVM data, Action todoAfterResponseReceived, Action <WebException> todoWithWebException)
 {
     GetAsync(new Request()
     {
         RequestUrl   = BaseAddress + "/Update",
         PostData     = JsonConvert.SerializeObject(new { userProfileEdit = data }),
         HttpPostVerb = HttpPostVerb.PUT,
         TodoAfterResponseReceived = todoAfterResponseReceived,
         HandleWebException        = todoWithWebException,
     });
 }
 public UserProfileEditVmObservable(UserProfileEditVM core)
 {
     Core = core;
 }