Exemplo n.º 1
0
 public async Task SaveOverShortAllocationsEX(OverShortAllocationsEX i)
 {
     if (i == null)
     {
         return;
     }
     using (var ctx = new OverShortAllocationsEXService())
     {
         await ctx.UpdateOverShortAllocationsEX(i).ConfigureAwait(false);
     }
 }
Exemplo n.º 2
0
 public async Task <OverShortAllocationsEX> CreateOverShortAllocationsEX(OverShortAllocationsEX entity)
 {
     return(await Channel.CreateOverShortAllocationsEX(entity).ConfigureAwait(false));
 }