//Search Entities
 public async Task <IEnumerable <ContainerEntryData> > SearchContainerEntryData(List <string> lst, List <string> includeLst = null)
 {
     using (var ctx = new ContainerEntryDataService())
     {
         return(await ctx.GetContainerEntryDataByExpressionLst(lst, includeLst).ConfigureAwait(false));
     }
 }
Example #2
0
 public async Task SaveContainerEntryData(ContainerEntryData i)
 {
     if (i == null)
     {
         return;
     }
     using (var ctx = new ContainerEntryDataService())
     {
         await ctx.UpdateContainerEntryData(i).ConfigureAwait(false);
     }
 }