Exemplo n.º 1
0
 public string getCWITextForBrand(int brandId, Int32 cultureId)
 {
     SQLCWITextRepository cwiTextRepo = new SQLCWITextRepository();
     string reqdInfo = cwiTextRepo.getCWITextForBrand(brandId, cultureId);
     return reqdInfo;
 }
Exemplo n.º 2
0
 public string getCWIText(int customerId, string brandName, Int32 cultureId)
 {
     SQLCWITextRepository cwiTextRepo = new SQLCWITextRepository();
     string reqdInfo = cwiTextRepo.getCWIText(customerId, brandName, cultureId);
     return reqdInfo;
 }