public IHttpActionResult UpdateCitBookingCancel(CITBookingCancelViewModel model) { CITService.UpdateCITBookingCancel(model.ToServiceRequestModel()); return(Ok()); }
public async Task <IHttpActionResult> CitBookingCancellationUpdate(CITBookingCancelViewModel model) { await WebApiService.Instance.PostAsync("cit/cancellation/update", model); return(Ok()); }