Exemplo n.º 1
0
 public DetailPage()
 {
     this._constantCollection  = new ConstantCollection();
     this._customClientRT      = new CustomClientRT();
     this._pictureRT           = new PictureRT();
     this._visitorIPMACAddress = new VisitorIPMACAddress();
 }
Exemplo n.º 2
0
 public Default()
 {
     this._customClientRT      = new CustomClientRT();
     this._categoryRT          = new CategoryRT();
     this._constantCollection  = new ConstantCollection();
     this._visitorIPMACAddress = new VisitorIPMACAddress();
 }
Exemplo n.º 3
0
 private void LoadLatestAdsForSale()
 {
     try
     {
         var objLatestAds = new CustomClientRT().GetAllLatestRandomAdsForSale().ToList();
         if (objLatestAds.Count > 0)
         {
             rpLatestForSale.DataSource = objLatestAds;
             rpLatestForSale.DataBind();
         }
     }
     catch (Exception ex)
     {
         LogFileWritten(ex.Message, ex.StackTrace);
     }
 }