Guest User

Untitled

a guest
Oct 19th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. /// <summary>
  2. /// Store of mappings between Magento
  3. /// </summary>
  4. static readonly Dictionary<string, string> vendorCodeMappings = new Dictionary<string, string>
  5. {
  6. {"BOOK", @"{0} Book"},
  7. {"MEDIA", @"{0} Book"},
  8. {"APPAREL", @"{0} Merchandise"},
  9. {"JEWELRY", @"{0} Merchandise"},
  10. {"ONLINECOURSE", @"{0} CE"},
  11. {"WEBINARS", @"{0} CE"},
  12. {"WHITEPAPER", @"{0} Book"},
  13. {"GIFT", @"{0} Other"},
  14. {"DEFAULT", @"{0} Other"},
  15. };
Add Comment
Please, Sign In to add comment