//Search Entities public async Task <IEnumerable <OverShortAllocationsEX> > SearchOverShortAllocationsEX(List <string> lst, List <string> includeLst = null) { using (var ctx = new OverShortAllocationsEXService()) { return(await ctx.GetOverShortAllocationsEXesByExpressionLst(lst, includeLst).ConfigureAwait(false)); } }
public async Task SaveOverShortAllocationsEX(OverShortAllocationsEX i) { if (i == null) { return; } using (var ctx = new OverShortAllocationsEXService()) { await ctx.UpdateOverShortAllocationsEX(i).ConfigureAwait(false); } }