public static TuckerRockyApiConfiguration FromConfiguration()
        {
            var c = new TuckerRockyApiConfiguration
            {
                BaseUrl = "http://199.249.234.194/bin/trws",
                ShipmentBaseUrl = "http://199.249.234.194/bin/trws",
                InventoryBaseUrl = "http://199.249.234.194/bin/trws",
                OrderBaseUrl = "http://199.249.234.194/bin/trws",
                AllowDuplicatePos = "YES",
                SplitLines = "NO",
                Submit = "NO",
                ApiKey = "MSSALK3456AEFSE4VET6354VGS42",
                CustomerNumber = "654182",
            };

            return c;
        }
 public TuckerRockyApiInventoryTests()
 {
     _config = TuckerRockyApiConfiguration.FromConfiguration();
     _client = new TuckerRockyClient(_config);
 }