Exemplo n.º 1
0
 //Search Entities
 public async Task <IEnumerable <xcuda_Item_Invoice> > Searchxcuda_Item_Invoice(List <string> lst, List <string> includeLst = null)
 {
     using (var ctx = new xcuda_Item_InvoiceService())
     {
         return(await ctx.Getxcuda_Item_InvoiceByExpressionLst(lst, includeLst).ConfigureAwait(false));
     }
 }
Exemplo n.º 2
0
 public async Task Savexcuda_Item_Invoice(xcuda_Item_Invoice i)
 {
     if (i == null)
     {
         return;
     }
     using (var ctx = new xcuda_Item_InvoiceService())
     {
         await ctx.Updatexcuda_Item_Invoice(i).ConfigureAwait(false);
     }
 }