public void FetchAvatarAndTitle()
 {
     r_FormToPopulate.PictureBoxProfile.Invoke(new Action(() => r_FormToPopulate.PictureBoxProfile.Image = r_FormToPopulate.LoginResult.LoggedInUser.ImageNormal));
     r_FormToPopulate.Invoke(new Action(() => r_FormToPopulate.Text = string.Format("Welcome {0} {1}", r_FormToPopulate.LoginResult.LoggedInUser.FirstName, r_FormToPopulate.LoginResult.LoggedInUser.LastName)));
 }