public async Task <IEnumerable <xcuda_Destination> > Searchxcuda_Destination(List <string> lst, List <string> includeLst = null)
 {
     using (var ctx = new xcuda_DestinationService())
     {
         return(await ctx.Getxcuda_DestinationByExpressionLst(lst, includeLst).ConfigureAwait(false));
     }
 }
 public async Task Savexcuda_Destination(xcuda_Destination i)
 {
     if (i == null)
     {
         return;
     }
     using (var ctx = new xcuda_DestinationService())
     {
         await ctx.Updatexcuda_Destination(i).ConfigureAwait(false);
     }
 }