public void DeleteGplusAccount(string UserId, string ProfileId, string GroupId)
 {
     try
     {
         ObjGooglePlusAccountsRepo.deleteGooglePlusUser(ProfileId, Guid.Parse(UserId));
         Domain.Myfashion.Domain.Team objTeam = objTeamRepository.GetTeamByGroupId(Guid.Parse(GroupId));
         objTeamMemberProfileRepository.DeleteTeamMemberProfileByTeamIdProfileId(ProfileId, objTeam.Id);
         objSocialProfilesRepository.deleteProfile(Guid.Parse(UserId), ProfileId);
     }
     catch (Exception ex)
     {
         Console.WriteLine("DeleteGplusAccount => " + ex.Message);
     }
 }