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