private static PriceList GetPriceList(string customerCode) { var url = Environment.GetEnvironmentVariable("PriceDbUrl"); var auth = Environment.GetEnvironmentVariable("PriceDbAuthKey"); return(PriceRepository.Connect(url, auth).GetPriceList(customerCode)); }