Example #1
0
 /// <summary>
 /// Save the selected companies to master data
 /// </summary>
 /// <param name="FuzzyLookupAccountIds"></param>
 public static void SaveFuzzyLookupAccountToMasterTable(int CustomerId, string ListName, int ImportFileId, List<string> FuzzyLookupAccountIds)
 {
     BrightPlatformEntities objDbModel = new BrightPlatformEntities(UserSession.EntityConnection);
     objDbModel.FISaveFuzzyLookupAccountsToMasterTable(
         CustomerId,
         ListName,
         UserSession.CurrentUser.UserId,
         ImportFileId,
         string.Join(",", FuzzyLookupAccountIds.ToArray()),
         UserSession.CurrentUser.ComputerName,
         BrightVision.EventLog.Business.FacadeEventLog.Source_Bright_Manager_Import_List);
 }