Example #1
0
 /// <summary>
 /// 
 /// </summary>
 /// <param name="ImportFileId"></param>
 /// <param name="FuzzyLookupAccountIds"></param>
 public static void UpdateFuzzyLookupAccountsByFuzzyCompanyMatches(int ImportFileId, List<string> FuzzyLookupAccountIds)
 {
     BrightPlatformEntities objDbModel = new BrightPlatformEntities(UserSession.EntityConnection);
     objDbModel.FIUpdateFuzzyLookupAccountMatchesByFuzzyCompanyName(ImportFileId, string.Join(",", FuzzyLookupAccountIds.ToArray()), UserSession.CurrentUser.UserId);
 }