//Search Entities
 public async Task <IEnumerable <xcuda_Inventory_Item> > Searchxcuda_Inventory_Item(List <string> lst, List <string> includeLst = null)
 {
     using (var ctx = new xcuda_Inventory_ItemService())
     {
         return(await ctx.Getxcuda_Inventory_ItemByExpressionLst(lst, includeLst).ConfigureAwait(false));
     }
 }
Beispiel #2
0
 public async Task Savexcuda_Inventory_Item(xcuda_Inventory_Item i)
 {
     if (i == null)
     {
         return;
     }
     using (var ctx = new xcuda_Inventory_ItemService())
     {
         await ctx.Updatexcuda_Inventory_Item(i).ConfigureAwait(false);
     }
 }