public static IDictionary <string, string> GetAllShopServices()
        {
            IDictionary <string, string> result = new Dictionary <string, string>();

            try
            {
                using (var client = new ShopClient())
                {
                    var data = client.GetAllBeautyProductPidAndName();
                    if (data != null && data.Success)
                    {
                        result = data.Result;
                    }
                }
            }
            catch (Exception ex)
            {
                logger.Log(Level.Error, ex, "GetAllShopServices");
            }

            return(result);
        }