private void RegisterEvents()
 {
     Hub.TabsDownloaded += (o, args) =>
     {
         Tabs = new TabsForBand(CurrentGroup.Id, Database);
     };
 }
        protected override void DataBind()
        {
            if (CurrentGroup != null)
            {
                Tabs = new TabsForBand(CurrentGroup.Id, Database);

                NothingFound = false;

                if (String.IsNullOrEmpty(CurrentGroup.Description))
                {
                    GetCurrentGroupInfo(CurrentGroup);
                }
                else
                {
                    Summary            = CurrentGroup.Description;
                    ImageUrl           = CurrentGroup.ImageUrl;
                    LargeImageUrl      = CurrentGroup.LargeImageUrl;
                    ExtraLargeImageUrl = CurrentGroup.ExtraLargeImageUrl;
                }
            }
        }