//Search Entities
 public async Task <IEnumerable <xcuda_item_deduction> > Searchxcuda_item_deduction(List <string> lst, List <string> includeLst = null)
 {
     using (var ctx = new xcuda_item_deductionService())
     {
         return(await ctx.Getxcuda_item_deductionByExpressionLst(lst, includeLst).ConfigureAwait(false));
     }
 }
Beispiel #2
0
 public async Task Savexcuda_item_deduction(xcuda_item_deduction i)
 {
     if (i == null)
     {
         return;
     }
     using (var ctx = new xcuda_item_deductionService())
     {
         await ctx.Updatexcuda_item_deduction(i).ConfigureAwait(false);
     }
 }