Esempio n. 1
0
 public async Task <IEnumerable <xcuda_Country> > Searchxcuda_Country(List <string> lst, List <string> includeLst = null)
 {
     using (var ctx = new xcuda_CountryService())
     {
         return(await ctx.Getxcuda_CountryByExpressionLst(lst, includeLst).ConfigureAwait(false));
     }
 }
Esempio n. 2
0
 public async Task Savexcuda_Country(xcuda_Country i)
 {
     if (i == null)
     {
         return;
     }
     using (var ctx = new xcuda_CountryService())
     {
         await ctx.Updatexcuda_Country(i).ConfigureAwait(false);
     }
 }