public CustomerIndustryTableSource (List<BingResult> meetingList, customerProfileVC owner)
			{
				TableItems = meetingList;
				this.owner = owner;
			}
			public TableSourcePreviousMeetings (List<UserMeetings> items, customerProfileVC owner)
			{
				TableItems = items;
				this.owner = owner;
			}
			public CustomerInfoTableSource (List<TwitterStream> twitterstream,customerProfileVC customerProfileObj)
			{
				TableItems = twitterstream;
				this.owner = customerProfileObj;
			}
			//customerProfileVC owner;

			public TableSourceInteractionWithCustomer (List<CustomerInteraction> items, customerProfileVC owner)
			{
				TableItems = items;
				//this.owner = owner;
			}