//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));
     }
 }
Example #2
0
 public async Task SaveOverShortAllocationsEX(OverShortAllocationsEX i)
 {
     if (i == null)
     {
         return;
     }
     using (var ctx = new OverShortAllocationsEXService())
     {
         await ctx.UpdateOverShortAllocationsEX(i).ConfigureAwait(false);
     }
 }