public static Dictionary <string, string> GetProductsModel(List <string> pids)
 {
     using (var client = new ProductClient())
     {
         var result = client.SelectCategoryNameAllLeversByPids(pids);
         result.ThrowIfException();
         return(result.Result);
     }
 }