public string Redirect(string code, string serie) {//serie=ABC123456789 ProductModel p = _productBusiness.GetBySerie(code, serie); BrandModel b = _brandBusiness.GetByBrand(p.Brand); CountryModel c = _countryBusiness.GetByAlpha2(p.SapClientAlpha_2Code); UrlModel u = _urlBusiness.GetByCompany(p.Company); return(_urlBusiness.Arrange(p, b, c, u)); }