Example #1
0
 //Search Entities
 public async Task <IEnumerable <xcuda_Tarification> > Searchxcuda_Tarification(List <string> lst, List <string> includeLst = null)
 {
     using (var ctx = new xcuda_TarificationService())
     {
         return(await ctx.Getxcuda_TarificationByExpressionLst(lst, includeLst).ConfigureAwait(false));
     }
 }
Example #2
0
 public async Task Savexcuda_Tarification(xcuda_Tarification i)
 {
     if (i == null)
     {
         return;
     }
     using (var ctx = new xcuda_TarificationService())
     {
         await ctx.Updatexcuda_Tarification(i).ConfigureAwait(false);
     }
 }