public async Task <OverShortAllocationsEX> CreateOverShortAllocationsEX(OverShortAllocationsEX entity) { try { using (var t = new OverShortAllocationsEXClient()) { return(new OverShortAllocationsEX(await t.CreateOverShortAllocationsEX(entity.DTO).ConfigureAwait(continueOnCapturedContext: false))); } } catch (FaultException <ValidationFault> e) { throw new Exception(e.Detail.Message, e.InnerException); } catch (Exception) { Debugger.Break(); throw; } }
public async Task <OverShortAllocationsEX> UpdateOverShortAllocationsEX(OverShortAllocationsEX entity) { if (entity == null) { return(entity); } var entitychanges = entity.ChangeTracker.GetChanges().FirstOrDefault(); if (entitychanges != null) { try { using (var t = new OverShortAllocationsEXClient()) { var updatedEntity = await t.UpdateOverShortAllocationsEX(entitychanges).ConfigureAwait(false); entity.EntityId = updatedEntity.EntityId; entity.DTO.AcceptChanges(); //var = entity.; //entity.ChangeTracker.MergeChanges(,updatedEntity); //entity. = ; return(entity); } } catch (FaultException <ValidationFault> e) { throw new Exception(e.Detail.Message, e.InnerException); } catch (Exception) { Debugger.Break(); throw; } } else { return(entity); } }