コード例 #1
0
 //Search Entities
 public async Task <IEnumerable <TariffCategory> > SearchTariffCategory(List <string> lst, List <string> includeLst = null)
 {
     using (var ctx = new TariffCategoryService())
     {
         return(await ctx.GetTariffCategoriesByExpressionLst(lst, includeLst).ConfigureAwait(false));
     }
 }