/// <summary> /// Save the selected fuzzy lookup contacts to the contacts master table /// </summary> /// <param name="FuzzyLookupContactIds"></param> public static void SaveFuzzyLookupContactToMasterTable(List<string> FuzzyLookupContactIds) { BrightPlatformEntities objDbModel = new BrightPlatformEntities(UserSession.EntityConnection); objDbModel.FISaveFuzzyLookupContactsToMasterTable( string.Join(",", FuzzyLookupContactIds.ToArray()), UserSession.CurrentUser.UserId, UserSession.CurrentUser.ComputerName, BrightVision.EventLog.Business.FacadeEventLog.Source_Bright_Manager_Import_List); }